From a68e91b0af54f053746f959f156a99f23426ef1f Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sun, 13 Dec 2009 22:00:44 +0000 Subject: [PATCH] Fix sorting bug --- chrome/content/zotero/xpcom/csl.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/csl.js b/chrome/content/zotero/xpcom/csl.js index 07384db13..b44a6dae2 100644 --- 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); }