diff options
author | terry%mozilla.org <> | 2000-01-14 01:19:19 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-14 01:19:19 +0100 |
commit | 6e55e7602ff2a70a10c5aeb64389f5df3ab88a95 (patch) | |
tree | 179338184e4133e85bdcbdefc51339670175787f /process_bug.cgi | |
parent | 438b9fe122472e111c8d7294244502afceefab99 (diff) | |
download | bugzilla-6e55e7602ff2a70a10c5aeb64389f5df3ab88a95.tar.gz bugzilla-6e55e7602ff2a70a10c5aeb64389f5df3ab88a95.tar.xz |
Don't complain that the user isn't doing anything if he is actually
changing keywords.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 7 |
1 files changed, 3 insertions, 4 deletions
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. <p>Click <b>Back</b> and try again.\n"; @@ -445,9 +447,6 @@ sub SnapShotKeywords { } -my $keywordaction = $::FORM{'keywordaction'} || "makeexact"; - - my $whoid = DBNameToIdAndCheck($::FORM{'who'}); my $timestamp; |