Skip to content
Snippets Groups Projects
Commit 9acd2737 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: internet explorer exe is iexplore.exe

parent 8d0dfb94
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment