From 5bc80d4cfe0aefec92727c47ceb454da1eb44d85 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 5 Sep 2008 06:00:03 +0000 Subject: [PATCH] Additional output for debugging tag problem --- chrome/content/zotero/xpcom/data/item.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index 2cdd6fec7..7bffd35ea 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -3066,6 +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); }