oops, utf8 not utf

This commit is contained in:
Christopher Hall 2011-01-25 15:27:18 +13:00
parent 03c20af354
commit 24d04b5bbd

View file

@ -108,7 +108,7 @@ sub param{
while(@_){
my $key = shift;
my $val = shift;
utf8::decode($val) if utf::is_utf8($val);
utf8::decode($val) if utf8::is_utf8($val);
$self->{VARS}->{$key} = $val;
}
}