diff options
author | cyeh%bluemartini.com <> | 2000-08-31 08:44:35 +0200 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-08-31 08:44:35 +0200 |
commit | 55b5a6b79fb0d349ce643bf4b0ad7a235a23645f (patch) | |
tree | 13a70a546358adb8285fdc105dcdb86f3609d868 /editversions.cgi | |
parent | 8562672bb3900038d9b98fff7979b2468ac02257 (diff) | |
download | bugzilla-55b5a6b79fb0d349ce643bf4b0ad7a235a23645f.tar.gz bugzilla-55b5a6b79fb0d349ce643bf4b0ad7a235a23645f.tar.xz |
fix for 44617: edit*.cgi: Should show which product you're working on
patches by mtakacs@pacbell.net (Tak)
Diffstat (limited to 'editversions.cgi')
-rwxr-xr-x | editversions.cgi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editversions.cgi b/editversions.cgi index afc223bd8..0efbc070b 100755 --- a/editversions.cgi +++ b/editversions.cgi @@ -222,7 +222,7 @@ unless ($product) { # unless ($action) { - PutHeader("Select version"); + PutHeader("Select version of $product"); CheckProduct($product); =for me @@ -277,7 +277,7 @@ unless ($action) { # if ($action eq 'add') { - PutHeader("Add version"); + PutHeader("Add version of $product"); CheckProduct($product); #print "This page lets you add a new version to a bugzilla-tracked product.\n"; @@ -348,7 +348,7 @@ if ($action eq 'new') { # if ($action eq 'del') { - PutHeader("Delete version"); + PutHeader("Delete version of $product"); CheckVersion($product, $version); SendSQL("SELECT count(bug_id),product,version @@ -412,7 +412,7 @@ one."; # if ($action eq 'delete') { - PutHeader("Deleting version"); + PutHeader("Deleting version of $product"); CheckVersion($product,$version); # lock the tables before we start to change everything: @@ -477,7 +477,7 @@ if ($action eq 'delete') { # if ($action eq 'edit') { - PutHeader("Edit version"); + PutHeader("Edit version of $product"); CheckVersion($product,$version); print "<FORM METHOD=POST ACTION=editversions.cgi>\n"; @@ -507,7 +507,7 @@ if ($action eq 'edit') { # if ($action eq 'update') { - PutHeader("Update version"); + PutHeader("Update version of $product"); my $versionold = trim($::FORM{versionold} || ''); |