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

(-)a/opac/opac-readingrecord.pl (-1 / +1 lines)
Lines 73-78 else { Link Here
73
73
74
74
75
my $limit = $query->param('limit');
75
my $limit = $query->param('limit');
76
$limit //= '';
76
$limit = ( $limit eq 'full' ) ? 0 : 50;
77
$limit = ( $limit eq 'full' ) ? 0 : 50;
77
78
78
my $issues = GetAllIssues( $borrowernumber, $order, $limit );
79
my $issues = GetAllIssues( $borrowernumber, $order, $limit );
79
- 

Return to bug 14185