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

(-)a/C4/XSLT.pm (-4 / +3 lines)
Lines 320-328 sub buildKohaItemsNamespace { Link Here
320
            $status = 'other';
320
            $status = 'other';
321
            $substatus = 'In transit';
321
            $substatus = 'In transit';
322
        }
322
        }
323
        elsif ($item->damaged && ! C4::Context->preference('AllowHoldsOnDamagedItems')) {
323
        elsif ( $item->damaged && !C4::Context->preference('AllowHoldsOnDamagedItems') ) {
324
            $status = 'other';
324
            $status    = 'other';
325
            $substatus = "Damaged";
325
            $substatus = 'Damaged';
326
        }
326
        }
327
        elsif ($item->itemlost) {
327
        elsif ($item->itemlost) {
328
            $status = 'other';
328
            $status = 'other';
329
- 

Return to bug 38100