diff options
author | cyeh%bluemartini.com <> | 2000-08-31 06:44:35 +0000 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-08-31 06:44:35 +0000 |
commit | 55b5a6b79fb0d349ce643bf4b0ad7a235a23645f (patch) | |
tree | 13a70a546358adb8285fdc105dcdb86f3609d868 /editcomponents.cgi | |
parent | fix for 32828: Redirect fails on Internet explorer: colchange.cgi (diff) | |
download | bugzilla-55b5a6b79fb0d349ce643bf4b0ad7a235a23645f.tar.gz bugzilla-55b5a6b79fb0d349ce643bf4b0ad7a235a23645f.tar.bz2 bugzilla-55b5a6b79fb0d349ce643bf4b0ad7a235a23645f.zip |
fix for 44617: edit*.cgi: Should show which product you're working on
patches by mtakacs@pacbell.net (Tak)
Diffstat (limited to 'editcomponents.cgi')
-rwxr-xr-x | editcomponents.cgi | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/editcomponents.cgi b/editcomponents.cgi index 9f7f43f6c..787c6983a 100755 --- a/editcomponents.cgi +++ b/editcomponents.cgi @@ -263,7 +263,7 @@ unless ($product) { # unless ($action) { - PutHeader("Select component"); + PutHeader("Select component of $product"); CheckProduct($product); if ($dobugcounts) { @@ -330,7 +330,7 @@ $dobugcounts = 1; # Stupid hack to force further PutTrailer() # if ($action eq 'add') { - PutHeader("Add component"); + PutHeader("Add component of $product"); CheckProduct($product); #print "This page lets you add a new product to bugzilla.\n"; @@ -358,7 +358,7 @@ if ($action eq 'add') { # if ($action eq 'new') { - PutHeader("Adding new component"); + PutHeader("Adding new component of $product"); CheckProduct($product); # Cleanups and valididy checks @@ -440,7 +440,7 @@ if ($action eq 'new') { # if ($action eq 'del') { - PutHeader("Delete component"); + PutHeader("Delete component of $product"); CheckComponent($product, $component); # display some data about the component @@ -556,7 +556,7 @@ one."; # if ($action eq 'delete') { - PutHeader("Deleting component"); + PutHeader("Deleting component of $product"); CheckComponent($product,$component); # lock the tables before we start to change everything: @@ -620,7 +620,7 @@ if ($action eq 'delete') { # if ($action eq 'edit') { - PutHeader("Edit component"); + PutHeader("Edit component of $product"); CheckComponent($product,$component); # get data of component @@ -682,7 +682,7 @@ if ($action eq 'edit') { # if ($action eq 'update') { - PutHeader("Update component"); + PutHeader("Update component of $product"); my $componentold = trim($::FORM{componentold} || ''); my $description = trim($::FORM{description} || ''); |