commit d5b4fce7d6fbc0242064fcdef5aedc41a870aae5
parent 2cfd07ffc2124897a878bf92b83fa53f1b05d499
Author: Dan Stillman <dstillman@zotero.org>
Date: Wed, 30 Dec 2009 20:21:43 +0000
Export Library was exporting items in all group libraries
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/data/items.js b/chrome/content/zotero/xpcom/data/items.js
@@ -160,7 +160,7 @@ Zotero.Items = new function() {
var ids = Zotero.DB.columnQuery(sql, libraryID);
}
else {
- //sql += " AND libraryID IS NULL";
+ sql += " AND libraryID IS NULL";
var ids = Zotero.DB.columnQuery(sql);
}