diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-09-02 15:43:23 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-09-02 15:43:23 +0000 |
commit | db950c1c5b5ed1a16c37839797aa6e9032d3267d (patch) | |
tree | 608e3d9c7a839861f5356118115dea0f48eceebd /perl-install/standalone | |
parent | f26bdf49dac7b5edeaf56bc5877e14725b3a09d8 (diff) | |
download | drakx-db950c1c5b5ed1a16c37839797aa6e9032d3267d.tar drakx-db950c1c5b5ed1a16c37839797aa6e9032d3267d.tar.gz drakx-db950c1c5b5ed1a16c37839797aa6e9032d3267d.tar.bz2 drakx-db950c1c5b5ed1a16c37839797aa6e9032d3267d.tar.xz drakx-db950c1c5b5ed1a16c37839797aa6e9032d3267d.zip |
prefix file path with file:// (mozilla-firefox needs a valid url)
Diffstat (limited to 'perl-install/standalone')
-rw-r--r-- | perl-install/standalone/drakhelp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index 19dc4ef04..22cca2fe1 100644 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -35,4 +35,4 @@ my ($instpath, $ancpath, $package) = ctxhelp::path2help($opt, $idlabel); -e $instpath or system("/usr/sbin/drakhelp_inst $package"); -e $instpath or $in->ask_warn(N("Mandriva Linux Help Center"), N("%s cannot be displayed \n. No Help entry of this type\n", $instpath)); -system("/usr/bin/www-browser $ancpath &") if -e $instpath; +system("/usr/bin/www-browser file://$ancpath &") if -e $instpath; |