From 58137cf628bb0989a671e896a2f8b9021c6d60a4 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 18 Mar 2018 00:27:33 -0400 Subject: Revert "Merge remote-tracking branch 'dylanwh/unextend-schema' into unstable" This reverts commit b70a4853a02d9011a3f0ba2a1d563df18810c934, reversing changes made to de95ef821f24d08c629ac764c7524970f968d70c. --- Bugzilla.pm | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'Bugzilla.pm') diff --git a/Bugzilla.pm b/Bugzilla.pm index 1ab72431a..afdfcefd2 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -57,7 +57,6 @@ 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 URI; @@ -863,20 +862,6 @@ 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, -- cgit v1.2.3-24-g4f1b