www

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

commit addfaa75f7d0905d79d1dd7e5122620bcfd03e8b
parent c81c9478d9fc3cb71b482edcd89e5ec6ce19d923
Author: aurimasv <aurimas.dev@gmail.com>
Date:   Mon,  3 Sep 2012 04:46:36 -0500

Fix bug in item.complete()

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 @@ -1371,7 +1371,7 @@ Zotero.Translate.Base.prototype = { "for(var key in this) {"+ "if("+createArrays+".indexOf(key) !== -1) {"+ "for each(var item in this[key]) {"+ - "for(var key2 in item[key2]) {"+ + "for(var key2 in item) {"+ "if(typeof item[key2] === 'xml') {"+ "item[key2] = item[key2].toString();"+ "}"+