Minor typo fix

This commit is contained in:
Quentin Garnier 2014-12-23 14:18:25 +01:00
parent a92359c1a5
commit 55310bd5c4
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ sub threshold_validate {
# $options{value} : threshold value
my $status = 1;
$self->{threshold_label}->{$options{label}} = {'value' => $options{value}, 'start' => undef, 'end' => undef, 'arobase' => undef, infinite_neg => undef, intinite_pos => undef};
$self->{threshold_label}->{$options{label}} = {value => $options{value}, start => undef, end => undef, arobase => undef, infinite_neg => undef, infinite_pos => undef};
if (!defined($options{value}) || $options{value} eq '') {
return $status;
}