From 000a96fb4bb21a97fee3966fde62e6625ffac783 Mon Sep 17 00:00:00 2001 From: oleonard Date: Mon, 13 Dec 2004 17:54:15 +0000 Subject: [PATCH] Fix from Joshua for Bug 851: stripping out comma and apostrophe from search terms --- circ/circulation.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circ/circulation.pl b/circ/circulation.pl index fe95dfe5a5..ac32ccddc5 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -55,6 +55,8 @@ my $branch = getbranch($query, $branches); my $printer = getprinter($query, $printers); my $findborrower = $query->param('findborrower'); +$findborrower =~ s|,| |g; +$findborrower =~ s|'| |g; my $borrowernumber = $query->param('borrnumber'); my $print=$query->param('print'); my $barcode = $query->param('barcode'); -- 2.11.0