www

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

commit 027ea094575332826672c134068a889c720f56bb
parent 4e1f6f63a03c060a3bf021bef469b6176f698f0b
Author: Simon Kornblith <simon@simonster.com>
Date:   Sun,  9 Sep 2012 14:44:07 -0700

Merge pull request #161 from aurimasv/itemComplete

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();"+ "}"+