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

(-)a/C4/Search.pm (-1 / +2 lines)
Lines 2126-2131 sub searchResults { Link Here
2126
         # items not on loan, but still unavailable ( lost, withdrawn, damaged )
2126
         # items not on loan, but still unavailable ( lost, withdrawn, damaged )
2127
            else {
2127
            else {
2128
2128
2129
                $item->{notforloan}=1 if !$item->{notforloan}  && $itemtypes{ C4::Context->preference("item-level_itypes")? $item->{itype}: $oldbiblio->{itemtype} }->{notforloan};
2130
2129
                # item is on order
2131
                # item is on order
2130
                if ( $item->{notforloan} < 0 ) {
2132
                if ( $item->{notforloan} < 0 ) {
2131
                    $ordered_count++;
2133
                    $ordered_count++;
2132
- 

Return to bug 3333