FormIgnore — specify variables that should not be propagated from CGI to Values space
The directive specifies variables that should not be propagated from the CGI into values space.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 2957 (context shows lines 2957-2974)
sub parse_boolean {
my($item,$settings) = @_;
my(@setting) = grep /\S/, split /[\s,]+/, $settings;
my $c;
if(defined $C) {
$c = $C->{$item} || {};
}
else {
no strict 'refs';
$c = ${"Global::$item"} || {};
}
for (@setting) {
$c->{$_} = 1;
}
return $c;
}