Fixes #1244, duplicating changes editors into authors

This commit is contained in:
Dan Stillman 2008-12-20 07:00:41 +00:00
parent 573dea6dcd
commit 9d9d4faffb

View file

@ -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++;
}
}