summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xperl-install/standalone/drakbug2
-rw-r--r--perl-install/standalone/drakhelp2
2 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug
index 934818d3f..7bd4ac651 100755
--- a/perl-install/standalone/drakbug
+++ b/perl-install/standalone/drakbug
@@ -120,7 +120,7 @@ gtkadd($window->{window},
$options .= "&distro_code=$distrocode";
$options .= "&kernel=$kernel_release" if $kernel_release;
print($bugzilla . "?" . $options . "\n");
- any::launch_browser_with_wm($bugzilla . "?" . $options);
+ system("/usr/bin/www-browser $bugzilla?$options &");
}
),
0, gtksignal_connect(Gtk2::Button->new(N("Close")), clicked => sub { ugtk2->exit(0) }),
diff --git a/perl-install/standalone/drakhelp b/perl-install/standalone/drakhelp
index 97291dde2..af03bc582 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("Mandrakelinux Help Center"), N("%s cannot be displayed \n. No Help entry of this type\n", $instpath));
--e $instpath and any::launch_browser_with_wm($ancpath);
+system("/usr/bin/www-browser $ancpath &") if -e $instpath;