summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-08-01 19:49:20 +0000
committerThierry Vignaud <tv@mandriva.org>2007-08-01 19:49:20 +0000
commit9270753eb308542b72e275bab8010457c3e97ddf (patch)
tree1f18e3b4adb44339c9873ef33976d22eeedf7392
parente5151f1cae38b252eccde93faa63e12a33054504 (diff)
downloaddrakx-9270753eb308542b72e275bab8010457c3e97ddf.tar
drakx-9270753eb308542b72e275bab8010457c3e97ddf.tar.gz
drakx-9270753eb308542b72e275bab8010457c3e97ddf.tar.bz2
drakx-9270753eb308542b72e275bab8010457c3e97ddf.tar.xz
drakx-9270753eb308542b72e275bab8010457c3e97ddf.zip
prefill default summary with the name of the actual program which crashed
-rw-r--r--perl-install/NEWS1
-rwxr-xr-xperl-install/standalone/drakbug3
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index fce235dea..c0bdee1f3 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -7,6 +7,7 @@
o basic adaption to new bugzilla (#31995)
o display Mandriva Online for mdkapplet in the "select mandriva
tool" field
+ o prefill default summary with the name of the actual program which crashed
- draksec: improve explanations (#6969)
- drakups: adapt to new nut doc path (blino)
diff --git a/perl-install/standalone/drakbug b/perl-install/standalone/drakbug
index b9f7bc667..c3445d2a4 100755
--- a/perl-install/standalone/drakbug
+++ b/perl-install/standalone/drakbug
@@ -108,7 +108,8 @@ gtkadd($window->{window},
($product || $version ?
'cf_rpmpkg=' . join('-', $product, $version) :()),
'component=Core%20Packages',
- 'classification=Mandriva%20Linux'
+ 'classification=Mandriva%20Linux',
+ if_($prog, "short_desc=$prog%20crashed"),
);
print($bugzilla_url . "?" . $options . "\n");
require run_program;