From c0fc3aeaaf304e4d3eb786e14440c3a307b7ef09 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 7 Jul 2009 00:20:10 +0000 Subject: [PATCH] Translator type comparison fix from Simon --- chrome/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 index 425dc824cf..eda73c3ae8 100644 --- 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; }