[Koha-cvs] koha/circ circulation.pl

Joshua Ferraro jmf at liblime.com
Sun Mar 18 05:13:21 CET 2007


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Joshua Ferraro <kados>	07/03/18 04:13:21

Modified files:
	circ           : circulation.pl 

Log message:
	fix for bug 1276: Cannot search for patron wtih apostrophe in their name

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/circ/circulation.pl?cvsroot=koha&r1=1.100&r2=1.101

Patches:
Index: circulation.pl
===================================================================
RCS file: /sources/koha/koha/circ/circulation.pl,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -b -r1.100 -r1.101
--- circulation.pl	9 Mar 2007 14:34:32 -0000	1.100
+++ circulation.pl	18 Mar 2007 04:13:21 -0000	1.101
@@ -65,7 +65,7 @@
 
 my $findborrower = $query->param('findborrower');
 $findborrower =~ s|,| |g;
-$findborrower =~ s|'| |g;
+#$findborrower =~ s|'| |g;
 my $borrowernumber = $query->param('borrowernumber');
 
 # new op dev the branch and the printer are now defined by the userenv





More information about the Koha-cvs mailing list