From f0ff19fd05f6389eef2d83a58d9f5cc825029181 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Sun, 7 Nov 2010 03:38:29 +0000 Subject: [PATCH] fix error report submission --- chrome/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 index cf4e96b1d..7341c61bb 100644 --- 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); } }