www

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

commit f0ff19fd05f6389eef2d83a58d9f5cc825029181
parent b5dd5b5e9f49417fe6cc86044e0c0381a66d4d61
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun,  7 Nov 2010 03:38:29 +0000

fix error report submission


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

diff --git a/chrome/content/zotero/xpcom/translation/translate.js b/chrome/content/zotero/xpcom/translation/translate.js @@ -1000,7 +1000,7 @@ Zotero.Translate.Web.prototype.complete = function(returnValue, error) { var postBody = "id=" + encodeURIComponent(this.translator[0].translatorID) + "&lastUpdated=" + encodeURIComponent(this.translator[0].lastUpdated) + "&diagnostic=" + encodeURIComponent(Zotero.getSystemInfo()) + - "&errorData=" + encodeURIComponent(errorData); + "&errorData=" + encodeURIComponent(errorString); Zotero.HTTP.doPost("http://www.zotero.org/repo/report", postBody); } }