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

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

Return to bug 3333