commit 6bed1231b306ee7f958937470b107882ca031fe6
parent 86db661ad6df7e56bdfc592034a2bd54be344bf9
Author: Dan Stillman <dstillman@zotero.org>
Date: Thu, 26 Nov 2009 05:11:47 +0000
Apply mguelck's patch from dev list to fix issue with sorting of multiple sources in one citation
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/csl.js b/chrome/content/zotero/xpcom/csl.js
@@ -1643,7 +1643,7 @@ Zotero.CSL.Citation.prototype.remove = function(citationItems) {
* copies a citation
*/
Zotero.CSL.Citation.prototype.clone = function() {
- var clone = new Zotero.CSL.Citation();
+ var clone = new Zotero.CSL.Citation(null, this._csl);
// copy items
for(var i=0; i<this.citationItems.length; i++) {