Author: nextgens
Date: 2008-06-05 09:31:07 +0000 (Thu, 05 Jun 2008)
New Revision: 20211

Modified:
   trunk/apps/new_installer/res/windows/browse.cmd
Log:
new_installer: maybe fix some more escaping issues

Modified: trunk/apps/new_installer/res/windows/browse.cmd
===================================================================
--- trunk/apps/new_installer/res/windows/browse.cmd     2008-06-05 08:59:10 UTC 
(rev 20210)
+++ trunk/apps/new_installer/res/windows/browse.cmd     2008-06-05 09:31:07 UTC 
(rev 20211)
@@ -24,7 +24,7 @@
 @set /P FIREFOX=<firefox.location
 @if not defined FIREFOX goto detectff
 @start "" /B %FIREFOX% "file:///%INSTALL_PATH%\dont-close-me.html"
- at start "" /B %FIREFOX% -no-remote -P freenet "%URL%"
+ at start "" /B %FIREFOX% -no-remote -P freenet %URL%
 @goto realEnd

 :detectff
@@ -55,7 +55,7 @@
 @echo Creating a Firefox profile for freenet
 @start "" /B %FIREFOX% "file:///%INSTALL_PATH%\dont-close-me.html"
 @%FIREFOX% -no-remote -CreateProfile "freenet %INSTALL_PATH%\firefox_profile" 
> NUL
- at start "" /B %FIREFOX% -no-remote -P freenet "%URL%"
+ at start "" /B %FIREFOX% -no-remote -P freenet %URL%
 @goto end

 :: Firefox hasn't been detected at all
@@ -63,12 +63,12 @@
 @echo The installer was unable to locate Mozilla Firefox on your computer
 @del /f firefox.location
 @echo Trying to open "%URL%"
- at start "" "%URL%"
+ at start "" %URL%
 @if errorlevel 1 goto argh
 @goto end
 :argh
 @echo Starting the page failed, attempting to load directly in IE
- at start "" /B "%ProgramFiles%\Internet Explorer\iexplore.exe" "%URL%"
+ at start "" /B "%ProgramFiles%\Internet Explorer\iexplore.exe" %URL%
 :end
 @del /f firefox.reg
 :realEnd


Reply via email to