koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Owen Leonard
Subject: [Koha-cvs] CVS: koha/circ circulation.pl,1.79,1.80
Date: Mon, 13 Dec 2004 09:54:18 -0800

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');




reply via email to

[Prev in Thread] Current Thread [Next in Thread]