[Koha-patches] [PATCH] [SIGNED-OFF] Fix for Bug 5526, List of lists should be in alphabetical order by list name

Liz Rea lrea at nekls.org
Mon Dec 20 16:56:11 CET 2010


From: Owen Leonard <oleonard at myacpl.org>


Signed-off-by: Liz Rea <lrea at nekls.org>
---
 C4/VirtualShelves.pm |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/C4/VirtualShelves.pm b/C4/VirtualShelves.pm
index 715cace..ee8d5c1 100644
--- a/C4/VirtualShelves.pm
+++ b/C4/VirtualShelves.pm
@@ -116,9 +116,9 @@ sub GetShelves ($$$$) {
     $query .= ($mincategory == 1) ? "WHERE  owner=? AND category=?" : "WHERE category>=?";
 	$query .= qq(
         GROUP BY virtualshelves.shelfnumber
-        ORDER BY virtualshelves.category
-		DESC 
+        ORDER BY virtualshelves.shelfname
 		LIMIT ?, ?);
+    warn $query;
     my $sth2 = $dbh->prepare($query);
     $sth2->execute(@params);
     my %shelflist;
-- 
1.5.6.5



More information about the Koha-patches mailing list