summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config.pm
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-02-27 10:19:27 +0100
committermkanat%kerio.com <>2005-02-27 10:19:27 +0100
commit4218394913eb9f3fa72910ca568a6cfaab463800 (patch)
tree2b28644ddef1a0b2ce4b3ed1f15e879e12a78cb3 /Bugzilla/Config.pm
parent518c6ffa1c75fe083c6b014817e29923ae36a851 (diff)
downloadbugzilla-4218394913eb9f3fa72910ca568a6cfaab463800.tar.gz
bugzilla-4218394913eb9f3fa72910ca568a6cfaab463800.tar.xz
Bug 283019: Stop Bugzilla::Config.pm from use-ing Bugzilla::Util
Patch By Marc Schumann <wurblzap@gmail.com> r=LpSolit, a=myk
Diffstat (limited to 'Bugzilla/Config.pm')
-rw-r--r--Bugzilla/Config.pm6
1 files changed, 2 insertions, 4 deletions
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm
index 3849f146b..f843f36b4 100644
--- a/Bugzilla/Config.pm
+++ b/Bugzilla/Config.pm
@@ -33,8 +33,6 @@ use strict;
use base qw(Exporter);
-use Bugzilla::Util;
-
# Under mod_perl, get this from a .htaccess config variable,
# and/or default from the current 'real' dir
# At some stage after this, it may be possible for these dir locations
@@ -307,7 +305,7 @@ sub check_multi {
my ($value, $param) = (@_);
if ($param->{'type'} eq "s") {
- unless (lsearch($param->{'choices'}, $value) >= 0) {
+ unless (scalar(grep {$_ eq $value} (@{$param->{'choices'}}))) {
return "Invalid choice '$value' for single-select list param '$param'";
}
@@ -315,7 +313,7 @@ sub check_multi {
}
elsif ($param->{'type'} eq "m") {
foreach my $chkParam (@$value) {
- unless (lsearch($param->{'choices'}, $chkParam) >= 0) {
+ unless (scalar(grep {$_ eq $chkParam} (@{$param->{'choices'}}))) {
return "Invalid choice '$chkParam' for multi-select list param '$param'";
}
}