From 9acd2737eb3035acbb948852aa260435915d6a52 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 14 Dec 2009 18:49:43 +0000 Subject: [PATCH] Fix: internet explorer exe is iexplore.exe --- build/exe/doliwamp/doliwamp.iss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/exe/doliwamp/doliwamp.iss b/build/exe/doliwamp/doliwamp.iss index 7a7eff1ded2..6d2c60715fa 100644 --- a/build/exe/doliwamp/doliwamp.iss +++ b/build/exe/doliwamp/doliwamp.iss @@ -455,7 +455,7 @@ begin and (FileExists(srcFile) and FileExists(srcFileH) and FileExists(srcFileA)) then begin //navigateur - browser := 'explorer.exe'; + browser := 'iexplore.exe'; if FileExists (pfPath+'/Mozilla Firefox/firefox.exe') then begin if MsgBox('Firefox has been detected on your computer. Would you like to use it as the default browser with Dolibarr ?',mbConfirmation,MB_YESNO) = IDYES then @@ -463,7 +463,7 @@ begin browser := pfPath+'/Mozilla Firefox/firefox.exe'; end; end; - if browser = 'explorer.exe' then + if browser = 'iexplore.exe' then begin GetOpenFileName('Please choose your default browser. If you are not sure, just click Open :', browser, winPath,'exe files (*.exe)|*.exe|All files (*.*)|*.*' ,'exe'); end;