summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbug
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2005-07-01 06:41:44 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2005-07-01 06:41:44 +0000
commitad4662164cb3a73838c02b9f518f8bad4a47774c (patch)
tree8c184219f9f5cfe7f8accd5df2afd264327d858c /perl-install/standalone/drakbug
parente5bf5fc1cd96f88ff0603b8bc162e4dc1d729664 (diff)
downloaddrakx-backup-do-not-use-ad4662164cb3a73838c02b9f518f8bad4a47774c.tar
drakx-backup-do-not-use-ad4662164cb3a73838c02b9f518f8bad4a47774c.tar.gz
drakx-backup-do-not-use-ad4662164cb3a73838c02b9f518f8bad4a47774c.tar.bz2
drakx-backup-do-not-use-ad4662164cb3a73838c02b9f518f8bad4a47774c.tar.xz
drakx-backup-do-not-use-ad4662164cb3a73838c02b9f518f8bad4a47774c.zip
fix shell parsing unquoted bugzilla URL (#16580)
Diffstat (limited to 'perl-install/standalone/drakbug')
-rwxr-xr-xperl-install/standalone/drakbug3
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug
index 6b8ae9141..264b7a53e 100755
--- a/perl-install/standalone/drakbug
+++ b/perl-install/standalone/drakbug
@@ -120,7 +120,8 @@ gtkadd($window->{window},
$options .= "&distro_code=$distrocode";
$options .= "&kernel=$kernel_release" if $kernel_release;
print($bugzilla . "?" . $options . "\n");
- system("/usr/bin/www-browser $bugzilla?$options &");
+ require run_program;
+ run_program::raw({ detach => 1 }, '/usr/bin/www-browser', "$bugzilla?$options");
}
),
0, gtksignal_connect(Gtk2::Button->new(N("Close")), clicked => sub { ugtk2->exit(0) }),