diff options
author | Daouda Lo <daouda@mandriva.com> | 2003-01-16 21:05:38 +0000 |
---|---|---|
committer | Daouda Lo <daouda@mandriva.com> | 2003-01-16 21:05:38 +0000 |
commit | cba0fa88fa844a0a31f63121307fe50ea1b9a906 (patch) | |
tree | 68f656d5e2e471303aa68561aa913ba47366c1e9 | |
parent | 341bc77db68e8b3a49b2e358a23cec79fd709f24 (diff) | |
download | drakx-cba0fa88fa844a0a31f63121307fe50ea1b9a906.tar drakx-cba0fa88fa844a0a31f63121307fe50ea1b9a906.tar.gz drakx-cba0fa88fa844a0a31f63121307fe50ea1b9a906.tar.bz2 drakx-cba0fa88fa844a0a31f63121307fe50ea1b9a906.tar.xz drakx-cba0fa88fa844a0a31f63121307fe50ea1b9a906.zip |
- checker
-rw-r--r-- | perl-install/standalone/drakhelp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp index 2fd3a8e0b..39c3255f6 100644 --- a/perl-install/standalone/drakhelp +++ b/perl-install/standalone/drakhelp @@ -19,9 +19,9 @@ my $path_to_help = "/usr/share/doc/mandrake/" . $lang . "/"; if ((my $wm = any::running_window_manager()) eq 'kwin') { system("mdklaunchhelp " . $path_to_help . $ARGV[0] . "&"); -}elsif ($wm eq 'gnome-session') { +} elsif ($wm eq 'gnome-session') { system("yelp ghelp://" . $path_to_help . $ARGV[0] . "&") -} else { +} else { on_request_help($path_to_help . $ARGV[0]) } |