summaryrefslogtreecommitdiffstats
path: root/Bugzilla.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-03-10 21:55:59 +0100
committerDylan William Hardison <dylan@hardison.net>2018-03-10 21:55:59 +0100
commitb70a4853a02d9011a3f0ba2a1d563df18810c934 (patch)
tree9b9b2bf4b76c392b0597b19ec2b4f5b508f8be21 /Bugzilla.pm
parentde95ef821f24d08c629ac764c7524970f968d70c (diff)
parent8ba3f387cd09504cd0ca357b3557d705d044633b (diff)
downloadbugzilla-b70a4853a02d9011a3f0ba2a1d563df18810c934.tar.gz
bugzilla-b70a4853a02d9011a3f0ba2a1d563df18810c934.tar.xz
Merge remote-tracking branch 'dylanwh/unextend-schema' into unstable
Diffstat (limited to 'Bugzilla.pm')
-rw-r--r--Bugzilla.pm15
1 files changed, 15 insertions, 0 deletions
diff --git a/Bugzilla.pm b/Bugzilla.pm
index f2191f33b..3e969a99d 100644
--- a/Bugzilla.pm
+++ b/Bugzilla.pm
@@ -57,6 +57,7 @@ use File::Basename;
use File::Spec::Functions;
use Safe;
use Sys::Syslog qw(:DEFAULT);
+use List::Util qw(any);
use JSON::XS qw(decode_json);
use parent qw(Bugzilla::CPAN);
@@ -854,6 +855,20 @@ sub check_rate_limit {
}
}
+# called from the verify version, component, and group page.
+# if we're making a group invalid, stuff the default group into the cgi param
+# to make it checked by default.
+sub check_default_product_security_group {
+ my ($class, $product, $invalid_groups, $optional_group_controls) = @_;
+ return unless my $group = $product->default_security_group_obj;
+ if (@$invalid_groups) {
+ my $cgi = $class->cgi;
+ my @groups = $cgi->param('groups');
+ push @groups, $group->name unless any { $_ eq $group->name } @groups;
+ $cgi->param('groups', @groups);
+ }
+}
+
# Private methods
# Per-process cleanup. Note that this is a plain subroutine, not a method,