commit 9d9d4faffb460726016e3bf92f9cff67036d8f1a
parent 573dea6dcd820e1c98020a4c0c574df4a3192885
Author: Dan Stillman <dstillman@zotero.org>
Date: Sat, 20 Dec 2008 07:00:41 +0000
Fixes #1244, duplicating changes editors into authors
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js
@@ -3047,7 +3047,9 @@ Zotero.Item.prototype.clone = function(includePrimary) {
else {
var i = 0;
for (var c in obj.creators) {
- newItem.setCreator(i, this.getCreator(c).ref, c.creatorType);
+ newItem.setCreator(
+ i, this.getCreator(c).ref, this.getCreator(c).creatorTypeID
+ );
i++;
}
}