From ccfa5abba9cb6554ef904b78f2374d4d07bb8028 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Mon, 19 Mar 2007 21:32:52 +0000 Subject: [PATCH] fix one more strict mode warning --- 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 b98cd3cb2..6e06657cb 100644 --- a/chrome/content/zotero/xpcom/translate.js +++ b/chrome/content/zotero/xpcom/translate.js @@ -1623,7 +1623,7 @@ Zotero.Translate.prototype._importDefuseBOM = function() { } // if we know what kind of BOM it has, generate an input stream - intlStream = Components.classes["@mozilla.org/intl/converter-input-stream;1"] + var intlStream = Components.classes["@mozilla.org/intl/converter-input-stream;1"] .createInstance(Components.interfaces.nsIConverterInputStream); intlStream.init(this._inputStream, this._hasBOM, 65535, Components.interfaces.nsIConverterInputStream.DEFAULT_REPLACEMENT_CHARACTER);