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) --- editmilestones.cgi | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'editmilestones.cgi') diff --git a/editmilestones.cgi b/editmilestones.cgi index fcd81ea09..9eadeeba2 100755 --- a/editmilestones.cgi +++ b/editmilestones.cgi @@ -212,7 +212,7 @@ unless ($product) { # unless ($action) { - PutHeader("Select milestone"); + PutHeader("Select milestone for $product"); CheckProduct($product); SendSQL("SELECT value,sortkey @@ -255,7 +255,7 @@ unless ($action) { # if ($action eq 'add') { - PutHeader("Add milestone"); + PutHeader("Add milestone for $product"); CheckProduct($product); #print "This page lets you add a new milestone to a $::bugzilla_name tracked product.\n"; @@ -283,7 +283,7 @@ if ($action eq 'add') { # if ($action eq 'new') { - PutHeader("Adding new milestone"); + PutHeader("Adding new milestone for $product"); CheckProduct($product); # Cleanups and valididy checks @@ -326,7 +326,7 @@ if ($action eq 'new') { # if ($action eq 'del') { - PutHeader("Delete milestone"); + PutHeader("Delete milestone of $product"); CheckMilestone($product, $milestone); SendSQL("SELECT count(bug_id),product,target_milestone @@ -401,7 +401,7 @@ one."; # if ($action eq 'delete') { - PutHeader("Deleting milestone"); + PutHeader("Deleting milestone of $product"); CheckMilestone($product,$milestone); # lock the tables before we start to change everything: @@ -466,7 +466,7 @@ if ($action eq 'delete') { # if ($action eq 'edit') { - PutHeader("Edit milestone"); + PutHeader("Edit milestone of $product"); CheckMilestone($product,$milestone); SendSQL("SELECT sortkey FROM milestones WHERE product=" . @@ -502,7 +502,7 @@ if ($action eq 'edit') { # if ($action eq 'update') { - PutHeader("Update milestone"); + PutHeader("Update milestone of $product"); my $milestoneold = trim($::FORM{milestoneold} || ''); my $sortkeyold = trim($::FORM{sortkeyold} || '0'); -- cgit v1.2.3-24-g4f1b