www

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

commit 2d92f3776e14f910db469341cecd7220c5043bb1
parent f11986ce0492210b1c5b2ae78e20eddbfe59b55a
Author: Simon Kornblith <simon@simonster.com>
Date:   Wed, 30 Jun 2010 03:25:54 +0000

pass "false" and not null to nsIProcess.run (not that it seems to make any difference)


Diffstat:
Mchrome/content/zotero/xpcom/integration.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js @@ -303,7 +303,7 @@ Zotero.Integration = new function() { var proc = Components.classes["@mozilla.org/process/util;1"]. createInstance(Components.interfaces.nsIProcess); proc.init(_osascriptFile); - proc.run(block, ['-e', script], 2); + proc.run(!!block, ['-e', script], 2); } } }