Commit 089556aa authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

Bug 343337: process_bug.cgi calls certain constants as global subroutines

Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=justdave
parent 6dde50de
......@@ -1606,10 +1606,10 @@ foreach my $id (@idlist) {
foreach my $group_control (@$group_controls) {
my ($group, $control) = @$group_control;
$control ||= 0;
unless ($control > &::CONTROLMAPNA) {
unless ($control > CONTROLMAPNA) {
$groupsforbidden{$group} = 1;
}
if ($control == &::CONTROLMAPMANDATORY) {
if ($control == CONTROLMAPMANDATORY) {
$groupsrequired{$group} = 1;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment