From 7b808ac36804bc3e2a6dec715ed2d2a55dbd8cdc Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sat, 27 Jan 2007 10:35:39 +0000 Subject: [PATCH] closes #509, Citation appears before parentheses --- chrome/content/zotero/xpcom/cite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/cite.js b/chrome/content/zotero/xpcom/cite.js index f1ef974c9..6ee428e98 100644 --- a/chrome/content/zotero/xpcom/cite.js +++ b/chrome/content/zotero/xpcom/cite.js @@ -453,7 +453,7 @@ Zotero.CSL.prototype.createCitation = function(citation, format) { if(this._cit.format) { // add citation prefix or suffix if(this._cit.format.prefix) { - string.string = string.string + this._cit.format.prefix; + string.string = this._cit.format.prefix + string.string; } if(this._cit.format.suffix) { string.append(this._cit.format.suffix);