From 74ad033fc8cdb7f6f6d59c005a73b0f7284144b6 Mon Sep 17 00:00:00 2001 From: Adrien Saurat Date: Tue, 4 Sep 2012 13:59:35 +0200 Subject: [PATCH] Bug 8719: Private lists always sorted by title Virtualshelves: The private lists were sorted by title, even when author or date was selected. This patch corrects this behaviour. --- C4/VirtualShelves/Page.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.9.5