commit 87e29249849d69f655d7f442183f3415b98400f0
parent 3db1d08bdfd31230f9187bde648c54550b4af823
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 21 Aug 2009 05:30:51 +0000
I created Zotero.Item.isImportedAttachment() on opposite day
Diffstat:
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
@@ -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;
}