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

(-)a/C4/Reserves.pm (-1 / +1 lines)
Lines 519-525 sub CanItemBeReserved { Link Here
519
        $ruleitemtype = '*';
519
        $ruleitemtype = '*';
520
    }
520
    }
521
521
522
    my $item = Koha::Items->find( $itemnumber );
522
    $item = Koha::Items->find( $itemnumber );
523
    my $holds = Koha::Holds->search(
523
    my $holds = Koha::Holds->search(
524
        {
524
        {
525
            borrowernumber => $borrowernumber,
525
            borrowernumber => $borrowernumber,
(-)a/Koha/Holds.pm (+1 lines)
Lines 65-70 Finally, if the patron has no holds, it will return Link Here
65
undef which indicateds the patron may select either
65
undef which indicateds the patron may select either
66
record or item level holds, barring any other rules
66
record or item level holds, barring any other rules
67
that would prevent one or the other.
67
that would prevent one or the other.
68
68
=cut
69
=cut
69
70
70
sub forced_hold_level {
71
sub forced_hold_level {
(-)a/reserve/placerequest.pl (-2 / +1 lines)
Lines 134-138 elsif ( $borrower eq '' ) { Link Here
134
134
135
    # Not sure that Dump() does HTML escaping. Use firebug or something to trace
135
    # Not sure that Dump() does HTML escaping. Use firebug or something to trace
136
    # instead.
136
    # instead.
137
    #	print $input->Dump;
137
    #print $input->Dump;
138
}
138
}
139
- 

Return to bug 14695