www

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

commit 5cd824136e962435d3c594444500c7a38b2dd3b3
parent 6078eb1d59f3f37942f64af17590ccf3211e8237
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 25 Nov 2008 17:13:57 +0000

Fix translator error reporting on trunk (inRepository property was missing on Zotero.Translator objects)


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 @@ -164,7 +164,7 @@ Zotero.Translator = function(file) { if(info) { var haveMetadata = true; // make sure we have all the properties - for each(var property in ["translatorID", "translatorType", "label", "target", "priority", "lastUpdated"]) { + for each(var property in ["translatorID", "translatorType", "label", "target", "priority", "lastUpdated", "inRepository"]) { if(info[property] === undefined) { this.logError('Missing property "'+property+'" in translator metadata JSON object'); haveMetadata = false;