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

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

Return to bug 38100