summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-05-17 00:21:29 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-05-17 00:21:29 +0200
commit003e49ae68c247448a5d9d18cb0110432668fdfd (patch)
treec735981eac17952cb445dc053c6fd3270eeb95a7
parent566655693317f329ec9d412a5c7bc058276858ba (diff)
downloadbugzilla-003e49ae68c247448a5d9d18cb0110432668fdfd.tar.gz
bugzilla-003e49ae68c247448a5d9d18cb0110432668fdfd.tar.xz
Bug 428452: Move code to set/modify keywords from process_bug.cgi into
Bugzilla::Bug::set_all r=dkl, a=mkanat
-rw-r--r--Bugzilla/Bug.pm6
-rwxr-xr-xprocess_bug.cgi14
2 files changed, 8 insertions, 12 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index 840ff91d6..ee53a0aae 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -1854,6 +1854,11 @@ sub set_all {
my $self = shift;
my ($params) = @_;
+ if (exists $params->{'keywords'}) {
+ $self->modify_keywords($params->{'keywords'},
+ $params->{'keywords_action'});
+ }
+
if (exists $params->{'comment'} or exists $params->{'work_time'}) {
# Add a comment as needed to each bug. This is done early because
# there are lots of things that want to check if we added a comment.
@@ -2350,7 +2355,6 @@ sub modify_keywords {
}
$self->{'keyword_objects'} = \@result;
- return $any_changes;
}
sub add_group {
diff --git a/process_bug.cgi b/process_bug.cgi
index ef8f41070..0753773df 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -306,16 +306,6 @@ elsif (should_set('dependson') || should_set('blocked')) {
}
}
-my $any_keyword_changes;
-if (defined $cgi->param('keywords')) {
- foreach my $b (@bug_objects) {
- my $return =
- $b->modify_keywords(scalar $cgi->param('keywords'),
- scalar $cgi->param('keywordaction'));
- $any_keyword_changes ||= $return;
- }
-}
-
# Component, target_milestone, and version are in here just in case
# the 'product' field wasn't defined in the CGI. It doesn't hurt to set
# them twice.
@@ -323,7 +313,8 @@ my @set_fields = qw(op_sys rep_platform priority bug_severity
component target_milestone version
bug_file_loc status_whiteboard short_desc
deadline remaining_time estimated_time
- work_time set_default_assignee set_default_qa_contact);
+ work_time set_default_assignee set_default_qa_contact
+ keywords keywordaction);
push(@set_fields, 'assigned_to') if !$cgi->param('set_default_assignee');
push(@set_fields, 'qa_contact') if !$cgi->param('set_default_qa_contact');
my %field_translation = (
@@ -333,6 +324,7 @@ my %field_translation = (
bug_file_loc => 'url',
set_default_assignee => 'reset_assigned_to',
set_default_qa_contact => 'reset_qa_contact',
+ keywordaction => 'keywords_action',
);
my %set_all_fields;