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

(-)a/opac/opac-reserve.pl (-7 lines)
Lines 60-71 my ( $template, $borrowernumber, $cookie ) = get_template_and_user( Link Here
60
    }
60
    }
61
);
61
);
62
62
63
my ($show_holds_count, $show_priority);
64
for ( C4::Context->preference("OPACShowHoldQueueDetails") ) {
65
    m/holds/o and $show_holds_count = 1;
66
    m/priority/ and $show_priority = 1;
67
}
68
69
my $patron = Koha::Patrons->find( $borrowernumber, { prefetch => ['categorycode'] } );
63
my $patron = Koha::Patrons->find( $borrowernumber, { prefetch => ['categorycode'] } );
70
my $category = $patron->category;
64
my $category = $patron->category;
71
65
72
- 

Return to bug 30847