www

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

commit 8d96cf35bb20be7d911265a354dad14a6491794b
parent f5044ab179207f7979505a8d1d92f19cccbd536b
Author: Dan Stillman <dstillman@zotero.org>
Date:   Fri,  3 Feb 2012 22:10:58 -0500

Fix global assignment

Diffstat:
Mchrome/content/zotero/zoteroPane.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -3169,10 +3169,10 @@ var ZoteroPane = new function() if (item.libraryID) { var group = Zotero.Groups.getByLibraryID(item.libraryID); - filesEditable = group.filesEditable; + var filesEditable = group.filesEditable; } else { - filesEditable = true; + var filesEditable = true; } if (saveSnapshot) {