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

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

Return to bug 30847