[Koha-cvs] CVS: koha/circ circulation.pl,1.79,1.80

Owen Leonard oleonard at users.sourceforge.net
Mon Dec 13 18:54:18 CET 2004


Update of /cvsroot/koha/koha/circ
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10072/circ

Modified Files:
	circulation.pl 
Log Message:
Fix from Joshua for Bug 851: stripping out comma and apostrophe from search terms

Index: circulation.pl
===================================================================
RCS file: /cvsroot/koha/koha/circ/circulation.pl,v
retrieving revision 1.79
retrieving revision 1.80
diff -C2 -r1.79 -r1.80
*** circulation.pl	28 Nov 2004 08:32:36 -0000	1.79
--- circulation.pl	13 Dec 2004 17:54:15 -0000	1.80
***************
*** 56,59 ****
--- 56,61 ----
  
  my $findborrower = $query->param('findborrower');
+ $findborrower =~ s|,| |g;
+ $findborrower =~ s|'| |g;
  my $borrowernumber = $query->param('borrnumber');
  my $print=$query->param('print');





More information about the Koha-cvs mailing list