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

(-)a/C4/Circulation.pm (-2 / +1 lines)
Lines 1185-1191 sub CanBookBeIssued { Link Here
1185
        }
1185
        }
1186
    }
1186
    }
1187
1187
1188
    unless ( $ignore_reserves and defined $recall ) {
1188
    unless ( $ignore_reserves || $recall ) {
1189
        # See if the item is on reserve.
1189
        # See if the item is on reserve.
1190
        my ( $restype, $res ) = CheckReserves( $item_object );
1190
        my ( $restype, $res ) = CheckReserves( $item_object );
1191
        if ($restype) {
1191
        if ($restype) {
1192
- 

Return to bug 35322