commit 055f64118887fe5a9ecba79e09344f34b80a3cc9
parent 539ac39d706c6b6a64280bcffc9fb8326736d524
Author: Dan Stillman <dstillman@zotero.org>
Date: Tue, 7 Sep 2010 19:01:26 +0000
Fix error message in previous commit
Diffstat:
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
@@ -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);
}