summaryrefslogtreecommitdiffstats
path: root/editcomponents.cgi
diff options
context:
space:
mode:
authorcyeh%bluemartini.com <>2000-08-31 08:44:35 +0200
committercyeh%bluemartini.com <>2000-08-31 08:44:35 +0200
commit55b5a6b79fb0d349ce643bf4b0ad7a235a23645f (patch)
tree13a70a546358adb8285fdc105dcdb86f3609d868 /editcomponents.cgi
parent8562672bb3900038d9b98fff7979b2468ac02257 (diff)
downloadbugzilla-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 'editcomponents.cgi')
-rwxr-xr-xeditcomponents.cgi14
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} || '');