Removed code that stripped whitespace out of search criteria causing the search to fail on list items.
This commit is contained in:
parent
7d3248da40
commit
dc50a3eb81
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue