www

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

commit af3ef422a39110ece6647d5215971458cc03848a
parent 92c6874475f7097f4b8c6ab461b11f93bf7f92e9
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sun, 13 Dec 2009 03:59:15 +0000

Use 'iskey' rather than 'key' for query string parameter to avoid conflict with API key


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

diff --git a/chrome/content/zotero/xpcom/storage/zfs.js b/chrome/content/zotero/xpcom/storage/zfs.js @@ -900,7 +900,7 @@ Zotero.Sync.Storage.Session.ZFS.prototype.purgeDeletedStorageFiles = function (c */ Zotero.Sync.Storage.Session.ZFS.prototype._getItemURI = function (item) { var uri = this.rootURI; - uri.spec += Zotero.URI.getItemPath(item) + '/file?auth=1&key=1'; + uri.spec += Zotero.URI.getItemPath(item) + '/file?auth=1&iskey=1'; return uri; }