From 55b5a6b79fb0d349ce643bf4b0ad7a235a23645f Mon Sep 17 00:00:00 2001 From: "cyeh%bluemartini.com" <> Date: Thu, 31 Aug 2000 06:44:35 +0000 Subject: fix for 44617: edit*.cgi: Should show which product you're working on patches by mtakacs@pacbell.net (Tak) --- editcomponents.cgi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'editcomponents.cgi') 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} || ''); -- cgit v1.2.3-24-g4f1b