From 6e55e7602ff2a70a10c5aeb64389f5df3ab88a95 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 14 Jan 2000 00:19:19 +0000 Subject: Don't complain that the user isn't doing anything if he is actually changing keywords. --- process_bug.cgi | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index e72e9704b..17d71bc03 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -397,7 +397,9 @@ if ($::FORM{'keywords'}) { } } -if ($::comma eq "") { +my $keywordaction = $::FORM{'keywordaction'} || "makeexact"; + +if ($::comma eq "" && 0 == @keywordlist && $keywordaction ne "makeexact") { if (!defined $::FORM{'comment'} || $::FORM{'comment'} =~ /^\s*$/) { print "Um, you apparently did not change anything on the selected\n"; print "bugs.

Click Back and try again.\n"; @@ -445,9 +447,6 @@ sub SnapShotKeywords { } -my $keywordaction = $::FORM{'keywordaction'} || "makeexact"; - - my $whoid = DBNameToIdAndCheck($::FORM{'who'}); my $timestamp; -- cgit v1.2.3-24-g4f1b