From 4a118b76475708901cdfcc4913389005e4528b86 Mon Sep 17 00:00:00 2001 From: Adrien Saurat Date: Tue, 4 Sep 2012 13:59:35 +0200 Subject: [PATCH] [SIGNED-OFF] Bug 8719: Private lists always sorted by title Content-Type: text/plain; charset="utf-8" Virtualshelves: The private lists were sorted by title, even when author or date was selected. This patch corrects this behaviour. Signed-off-by: Marc Veron With this patch lists sort as expected. --- C4/VirtualShelves/Page.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/C4/VirtualShelves/Page.pm b/C4/VirtualShelves/Page.pm index c765cf0..988244c 100644 --- a/C4/VirtualShelves/Page.pm +++ b/C4/VirtualShelves/Page.pm @@ -251,7 +251,7 @@ sub shelfpage { my $authorsort; my $yearsort; my $tag_quantity; - my $sortfield = ( $query->param('sortfield') ? $query->param('sortfield') : 'title' ); + my $sortfield = ( $sorton ? $sorton : 'title' ); if ( $sortfield eq 'author' ) { $authorsort = 'author'; } -- 1.7.2.5