www

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

commit ab10d1617eaba3ccd764cda5e5802b70c3d53bb9
parent 381fe38b897e57f402465d99fac30892e4130a96
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sun, 17 Jul 2016 15:13:05 -0400

Replace deprecated Zotero.Libraries.isEditable() call on note save

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

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -4253,7 +4253,7 @@ var ZoteroPane = new function() } var collectionTreeRow = this.collectionsView.getRow(row); - return Zotero.Libraries.isEditable(collectionTreeRow.ref.libraryID); + return Zotero.Libraries.get(collectionTreeRow.ref.libraryID).editable; }