commit a68e91b0af54f053746f959f156a99f23426ef1f
parent ecaa599bec32e999dbbbdef1a433295955856629
Author: Simon Kornblith <simon@simonster.com>
Date: Sun, 13 Dec 2009 22:00:44 +0000
Fix sorting bug
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/chrome/content/zotero/xpcom/csl.js b/chrome/content/zotero/xpcom/csl.js
@@ -996,10 +996,9 @@ Zotero.CSL.prototype._processElements = function(item, element, formattedString,
variableString.append(string, newChild);
}
-
- newString.concat(variableString);
}
+ newString.concat(variableString);
formattedString.concat(newString, child);
}