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);