summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-05-27 07:32:27 +0200
committerByron Jones <glob@mozilla.com>2015-05-27 07:32:27 +0200
commit776ee55030257105efd7df2196d9aee01e8281ad (patch)
tree5a3c2c1ac820eafdeb175ec7b0d7ebef4da87471 /Bugzilla/Bug.pm
parent4bc64fd88d745ea6b98fac615df3d8fe96419923 (diff)
downloadbugzilla-776ee55030257105efd7df2196d9aee01e8281ad.tar.gz
bugzilla-776ee55030257105efd7df2196d9aee01e8281ad.tar.xz
Bug 1162427: the "reset assignee to default" checkbox / functionality should be visible
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index d22ebc1ce..d105dd005 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -2415,6 +2415,9 @@ sub set_all {
my $params = {};
%$params = %$input_params;
+ # BMO - allow extensions to morph params
+ Bugzilla::Hook::process('bug_start_of_set_all', { bug => $self, params => $params });
+
# You cannot mark bugs as duplicate when changing several bugs at once
# (because currently there is no way to check for duplicate loops in that
# situation). You also cannot set the alias of several bugs at once.