summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone/drakbug
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-08-01 19:30:51 +0000
committerThierry Vignaud <tv@mandriva.org>2007-08-01 19:30:51 +0000
commitc42a6126e32df080f9146ce9a3a1fdd663b3e225 (patch)
treeaaece7b79952419ee078aba013fb9e5c8857eda5 /perl-install/standalone/drakbug
parent583cefce6b5975bff8cf0e2bfd51fc4bb5a0ddf0 (diff)
downloaddrakx-backup-do-not-use-c42a6126e32df080f9146ce9a3a1fdd663b3e225.tar
drakx-backup-do-not-use-c42a6126e32df080f9146ce9a3a1fdd663b3e225.tar.gz
drakx-backup-do-not-use-c42a6126e32df080f9146ce9a3a1fdd663b3e225.tar.bz2
drakx-backup-do-not-use-c42a6126e32df080f9146ce9a3a1fdd663b3e225.tar.xz
drakx-backup-do-not-use-c42a6126e32df080f9146ce9a3a1fdd663b3e225.zip
rename "bugzilla" as "bugzilla_url" (more sensitive)
Diffstat (limited to 'perl-install/standalone/drakbug')
-rwxr-xr-xperl-install/standalone/drakbug6
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug
index 50689d76b..1a8718c3a 100755
--- a/perl-install/standalone/drakbug
+++ b/perl-install/standalone/drakbug
@@ -72,7 +72,7 @@ if ($mandrake_release =~ /(official|community)/i) {
} else {
$distrocode = "cooker";
}
-my $bugzilla = 'http://qa.mandriva.com/enter_bug.cgi';
+my $bugzilla_url = 'http://qa.mandriva.com/enter_bug.cgi';
my $wizard_name = "Bugzilla";
$table = create_packtable({ col_spacings => 5, row_spacings => 10 },
@@ -111,9 +111,9 @@ gtkadd($window->{window},
$options .= "&version=$version" if $version;
$options .= "&distro_code=$distrocode";
$options .= "&kernel=$kernel_release" if $kernel_release;
- print($bugzilla . "?" . $options . "\n");
+ print($bugzilla_url . "?" . $options . "\n");
require run_program;
- run_program::raw({ detach => 1 }, '/usr/bin/www-browser', "$bugzilla?$options");
+ run_program::raw({ detach => 1 }, '/usr/bin/www-browser', "$bugzilla_url?$options");
}
),
gtksignal_connect(Gtk2::Button->new(N("Close")), clicked => sub { ugtk2->exit(0) }),