www

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

commit c0fc3aeaaf304e4d3eb786e14440c3a307b7ef09
parent 8ca854fdea1b9fc5d0a06ed800d914eb881f0463
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue,  7 Jul 2009 00:20:10 +0000

Translator type comparison fix from Simon


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 @@ -145,7 +145,7 @@ Zotero.Translators = new function() { if (!metadata.translatorType) { var found = false; for each(var type in TRANSLATOR_TYPES) { - if (metadata.translatorType == type) { + if (metadata.translatorType & type) { found = true; break; }