Fixes #1244, duplicating changes editors into authors
This commit is contained in:
parent
573dea6dcd
commit
9d9d4faffb
1 changed files with 3 additions and 1 deletions
|
@ -3047,7 +3047,9 @@ Zotero.Item.prototype.clone = function(includePrimary) {
|
||||||
else {
|
else {
|
||||||
var i = 0;
|
var i = 0;
|
||||||
for (var c in obj.creators) {
|
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++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue