From 3c52b422fa2c658a46efcdfe429030b0c1b378ca Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Wed, 7 Nov 2012 15:15:56 -0500 Subject: [PATCH] Fix missing parens --- chrome/content/zotero/xpcom/zotero.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index e0870ecfd..e61fd78a7 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -2429,7 +2429,7 @@ Zotero.Browser = new function() { } function deleteHiddenBrowser(myBrowsers) { - if(!myBrowsers instanceof Array) myBrowsers = [myBrowsers]; + if(!(myBrowsers instanceof Array)) myBrowsers = [myBrowsers]; for(var i=0; i