www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 9ac7efb3f00a6662d84783b152bc17f7456d0026
parent 4581923154a936b00d631816148065b9d9f916ff
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed, 27 Jul 2011 14:20:47 +0000

Fix "Zotero.Libraries.getGroupIDFromLibraryID" in new code


Diffstat:
Mchrome/content/zotero/xpcom/search.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/search.js b/chrome/content/zotero/xpcom/search.js @@ -345,7 +345,7 @@ Zotero.Search.prototype.save = function(fixGaps) { if (isNew && this.libraryID) { - var groupID = Zotero.Libraries.getGroupIDFromLibraryID(this.libraryID); + var groupID = Zotero.Groups.getGroupIDFromLibraryID(this.libraryID); var group = Zotero.Groups.get(groupID); group.clearSearchCache(); }