From 8bc4ea559bb25b172101c28e49afe46adaf6c3aa Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 30 Sep 2025 20:27:36 +0000 Subject: [PATCH] Bug 40916: Fix another occurance --- virtualshelves/shelves.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtualshelves/shelves.pl b/virtualshelves/shelves.pl index 3753547eba2..f64caf75428 100755 --- a/virtualshelves/shelves.pl +++ b/virtualshelves/shelves.pl @@ -297,7 +297,7 @@ if ( $op eq 'view' ) { $sortfield = 'title' unless grep { $_ eq $sortfield } qw( title author copyrightdate publicationyear itemcallnumber dateadded ); - if ( $sortfield == 'copyrightdate' and C4::Context->preference('marcflavour') == 'UNIMARC' ) { + if ( $sortfield eq 'copyrightdate' and C4::Context->preference('marcflavour') eq 'UNIMARC' ) { $sortfield = 'publicationyear'; } my $direction = $query->param('direction') || 'asc'; -- 2.39.5