www

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

commit db43af33accf3dd5fb0f78b27b872207664939ec
parent e457e5bdfeebad96aaaae53283d6c820acc9d907
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sat, 12 Oct 2013 02:54:28 -0400

Fix "req is not defined" error message (which indicates a WebDAV error)

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

diff --git a/chrome/content/zotero/xpcom/storage/webdav.js b/chrome/content/zotero/xpcom/storage/webdav.js @@ -1091,7 +1091,7 @@ Zotero.Sync.Storage.WebDAV = (function () { ); }) .catch(function (e) { - var msg = "HTTP " + req.status + " error from WebDAV server " + var msg = "HTTP " + e.status + " error from WebDAV server " + "for PUT request"; Zotero.debug(msg, 2); Components.utils.reportError(msg);