www

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

commit f8a5ddc0476aa7d38ed86a71c209549a7b8013e9
parent f4a8822ea70a21f24fd92098c0eb5225b3d60994
Author: Dan Stillman <dstillman@zotero.org>
Date:   Mon,  6 Oct 2008 21:07:59 +0000

All creator types defaulted to author on import


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

diff --git a/chrome/content/zotero/xpcom/translate.js b/chrome/content/zotero/xpcom/translate.js @@ -1241,7 +1241,7 @@ Zotero.Translate.prototype._itemDone = function(item, attachedTo) { // try to assign correct creator type if(data[j].creatorType) { try { - var creatorType = Zotero.CreatorTypes.getID(data[j].creatorType); + var creatorTypeID = Zotero.CreatorTypes.getID(data[j].creatorType); } catch(e) { Zotero.debug("Translate: Invalid creator type "+data[j].creatorType+" for creator index "+j, 2); }