From a6630bb2458cfbeca19ef3e71ba017f420efccb4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 5 Sep 2008 06:11:21 +0000 Subject: [PATCH] Merged r3346 to SP2.1 tag --- chrome/content/zotero/xpcom/data/item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index 2cdd6fec7..36623bd41 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -3067,7 +3067,7 @@ Zotero.Item.prototype.clone = function(includePrimary) { if (obj.tags) { for each(var tag in obj.tags) { - newItem.addTagByID(tag.id); + newItem.addTagByID(tag.primary.tagID); } }