summaryrefslogtreecommitdiffstats
path: root/extensions/AntiSpam/lib/Config.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/AntiSpam/lib/Config.pm')
-rw-r--r--extensions/AntiSpam/lib/Config.pm8
1 files changed, 1 insertions, 7 deletions
diff --git a/extensions/AntiSpam/lib/Config.pm b/extensions/AntiSpam/lib/Config.pm
index b6d1234d9..e35a7f001 100644
--- a/extensions/AntiSpam/lib/Config.pm
+++ b/extensions/AntiSpam/lib/Config.pm
@@ -23,7 +23,7 @@ sub get_param_list {
{
name => 'antispam_spammer_exclude_group',
type => 's',
- choices => \&_get_all_group_names,
+ choices => \&get_all_group_names,
default => 'canconfirm',
checker => \&check_group
},
@@ -79,10 +79,4 @@ sub get_param_list {
return @param_list;
}
-sub _get_all_group_names {
- my @group_names = map {$_->name} Bugzilla::Group->get_all;
- unshift(@group_names, '');
- return \@group_names;
-}
-
1;