diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-06 02:49:09 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-07-06 02:49:09 +0200 |
commit | 122c0407902c08b974ac552898a3bed3a2025a7d (patch) | |
tree | 55b559a29a6e2e1f7c7c517ed6f6296cade30918 /process_bug.cgi | |
parent | Bug 554964 - Show if a user is a "Default CC" under the Product Responsibilit... (diff) | |
download | bugzilla-122c0407902c08b974ac552898a3bed3a2025a7d.tar.gz bugzilla-122c0407902c08b974ac552898a3bed3a2025a7d.tar.bz2 bugzilla-122c0407902c08b974ac552898a3bed3a2025a7d.zip |
Bug 576916: 'keywordaction' is undefined when editing a single bug
r/a=mkanat
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index f6da2af61..7126d5d8b 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -258,7 +258,8 @@ foreach my $field_name (@set_fields) { } if (should_set('keywords')) { - my $action = $cgi->param('keywordaction'); + my $action = $cgi->param('keywordaction') || ''; + # Backward-compatibility for Bugzilla 3.x and older. $action = 'remove' if $action eq 'delete'; $action = 'set' if $action eq 'makeexact'; $set_all_fields{keywords}->{$action} = $cgi->param('keywords'); |