From 87e29249849d69f655d7f442183f3415b98400f0 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 21 Aug 2009 05:30:51 +0000 Subject: [PATCH] I created Zotero.Item.isImportedAttachment() on opposite day --- chrome/content/zotero/xpcom/data/item.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/data/item.js b/chrome/content/zotero/xpcom/data/item.js index bfb0af966..8980c43d5 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -2391,9 +2391,9 @@ Zotero.Item.prototype.isImportedAttachment = function() { } var linkMode = this.attachmentLinkMode; if (linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_FILE || linkMode == Zotero.Attachments.LINK_MODE_IMPORTED_URL) { - return false; + return true; } - return true; + return false; }