Removed code that stripped whitespace out of search criteria causing the search to fail on list items.

This commit is contained in:
Frank Dillon 2006-04-25 14:56:22 +00:00
parent 7d3248da40
commit dc50a3eb81

View file

@ -153,7 +153,8 @@ sub _matchPairs {
$hash{''} = $i18n->get('select one');
foreach (split("\n",$options)) {
my $val = $_;
$val =~ s/\s//g;
#$val =~ s/\s//g;
$val =~ s/\r//g;
$val =~ s/\n//g;
$hash{$val} = $val;
}