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

(-)a/opac/opac-readingrecord.pl (-2 / +1 lines)
Lines 57-63 if ( $order eq 'title' ) { Link Here
57
} elsif ( $order eq 'author' ) {
57
} elsif ( $order eq 'author' ) {
58
    $template->param( orderbyauthor => 1 );
58
    $template->param( orderbyauthor => 1 );
59
} else {
59
} else {
60
    $order = "date_due desc";
60
    $order = { -desc => "date_due" };
61
    $template->param( orderbydate => 1 );
61
    $template->param( orderbydate => 1 );
62
}
62
}
63
63
64
- 

Return to bug 38102