From 94ac73b0d3b278751ef33a101f41450b25c6f87b Mon Sep 17 00:00:00 2001 From: plugz Date: Thu, 19 Jun 2003 16:14:30 +0000 Subject: [PATCH] bugfix for #499 The BornameSearch function now uses the $type parameter Single and advanced search methods implemented. Advanced is the old version. Single only looks for $member% in surnames. --- C4/Search.pm | 48 +++++++++++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/C4/Search.pm b/C4/Search.pm index d252268953..d1d29d6c80 100755 --- a/C4/Search.pm +++ b/C4/Search.pm @@ -1721,7 +1721,9 @@ sub itemnodata { Looks up patrons (borrowers) by name. -C<$env> and C<$type> are ignored. +C<$env> is ignored. + +BUGFIX 499: C<$type> is now used to determine C<$searchstring> is a space-separated list of search terms. Each term must match the beginning a borrower's surname, first name, or other @@ -1741,30 +1743,38 @@ sub BornameSearch { my $dbh = C4::Context->dbh; $searchstring=~ s/\,//g; $searchstring=~ s/\'/\\\'/g; - my @data=split(' ',$searchstring); - my $count=@data; - my $query="Select * from borrowers - where ((surname like \"$data[0]%\" or surname like \"% $data[0]%\" - or firstname like \"$data[0]%\" or firstname like \"% $data[0]%\" - or othernames like \"$data[0]%\" or othernames like \"% $data[0]%\") - "; - for (my $i=1;$i<$count;$i++){ - $query=$query." and (surname like \"$data[$i]%\" or surname like \"% $data[$i]%\" - or firstname like \"$data[$i]%\" or firstname like \"% $data[$i]%\" - or othernames like \"$data[$i]%\" or othernames like \"% $data[$i]%\")"; - # FIXME - .= <prepare($query); $sth->execute; my @results; - my $cnt=0; + my $cnt=$sth->rows; while (my $data=$sth->fetchrow_hashref){ push(@results,$data); - $cnt ++; } # $sth->execute; $sth->finish; -- 2.39.5