From 055f64118887fe5a9ecba79e09344f34b80a3cc9 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 7 Sep 2010 19:01:26 +0000 Subject: [PATCH] Fix error message in previous commit --- 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 25f94c343..bf613ec0e 100644 --- a/chrome/content/zotero/xpcom/data/item.js +++ b/chrome/content/zotero/xpcom/data/item.js @@ -1223,7 +1223,7 @@ Zotero.Item.prototype.save = function() { if (this.libraryID && ((e.indexOf && e.indexOf('fki_items_libraryID_libraries_libraryID') != -1) || (!Zotero.Libraries.exists(this.libraryID)))) { - var msg = "Library " + this.libraryID + " for item " + this.key; + var msg = "Library " + this.libraryID + " for item " + this.key + " not found"; var e = new Zotero.Error(msg, "MISSING_OBJECT"); throw (e); }