www

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

commit 0821e34b209514b2edf2f87abf9cb124d6ee0066
parent e7ba86216e443c8486145cc08e6da69c061506e9
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 11 May 2010 19:49:22 +0000

WebDAV server SSL error wasn't being properly displayed


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

diff --git a/chrome/content/zotero/xpcom/storage/webdav.js b/chrome/content/zotero/xpcom/storage/webdav.js @@ -1644,7 +1644,7 @@ Zotero.Sync.Storage.Session.WebDAV.prototype._checkResponse = function (req, obj Zotero.debug(e); } - var msg = Zotero.localeString([ + var msg = Zotero.localeJoin([ Zotero.getString('sync.storage.error.webdav.sslCertificateError'), Zotero.getString('sync.storage.error.webdav.loadURLForMoreInfo') ]); @@ -1653,7 +1653,7 @@ Zotero.Sync.Storage.Session.WebDAV.prototype._checkResponse = function (req, obj return; } else if ((secInfo.securityState & Ci.nsIWebProgressListener.STATE_IS_BROKEN) == Ci.nsIWebProgressListener.STATE_IS_BROKEN) { - var msg = Zotero.localeString([ + var msg = Zotero.localeJoin([ Zotero.getString('sync.storage.error.webdav.sslConnectionError'), Zotero.getString('sync.storage.error.webdav.loadURLForMoreInfo') ]);