From 39fad89745b46409ca5765e73bbba82eee82eacc Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Sat, 29 Dec 2007 14:58:44 -0600 Subject: [PATCH] Fix for bug 1253 borrowers names sorted case sensitivly in circulation.pl Signed-off-by: Joshua Ferraro --- circ/circulation.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index e1f3e50fd5..e3f79652de 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -494,9 +494,9 @@ my $CGIselectborrower; if ($borrowerslist) { foreach ( sort { - $a->{'surname'} - . $a->{'firstname'} cmp $b->{'surname'} - . $b->{'firstname'} + lc $a->{'surname'} + . lc $a->{'firstname'} cmp lc $b->{'surname'} + . lc $b->{'firstname'} } @$borrowerslist ) { -- 2.11.0