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) --- editversions.cgi | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'editversions.cgi') 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 "
\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} || ''); -- cgit v1.2.3-24-g4f1b