View | Details | Raw Unified | Return to bug 9458
Collapse All | Expand All

(-)a/C4/VirtualShelves/Page.pm (-2 / +1 lines)
Lines 249-255 sub shelfpage { Link Here
249
                my $items;
249
                my $items;
250
                my $tag_quantity;
250
                my $tag_quantity;
251
                my $sortfield = ( $sorton ? $sorton : 'title' );
251
                my $sortfield = ( $sorton ? $sorton : 'title' );
252
                $sortfield = $query->param('sort') || $sortfield || 'title'; ## Passed in sorting overrides default sorting
252
                $sortfield = $query->param('sort') || $sortfield; ## Passed in sorting overrides default sorting
253
                my $direction = $query->param('direction') || 'asc';
253
                my $direction = $query->param('direction') || 'asc';
254
                $template->param(
254
                $template->param(
255
                    sort      => $sortfield,
255
                    sort      => $sortfield,
256
- 

Return to bug 9458