commit c6de353d23de18d2e098572526c1e8fe8b5e5c60 parent 5bc80d4cfe0aefec92727c47ceb454da1eb44d85 Author: Dan Stillman <dstillman@zotero.org> Date: Fri, 5 Sep 2008 06:03:45 +0000 Fix error and blank CR window when an item with tags is in conflict Diffstat:
| M | chrome/content/zotero/xpcom/data/item.js | | | 4 | +--- |
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js @@ -3066,10 +3066,8 @@ Zotero.Item.prototype.clone = function(includePrimary) { } if (obj.tags) { - Zotero.debug('============================='); - Zotero.debug(obj.tags); for each(var tag in obj.tags) { - newItem.addTagByID(tag.id); + newItem.addTagByID(tag.primary.tagID); } }