From 5d0644fce2300da863af935977cdb5d316ba751d Mon Sep 17 00:00:00 2001 From: Paul Derscheid Date: Thu, 7 Nov 2024 11:11:46 +0000 Subject: [PATCH] Bug 38100: (QA follow-up) Tidy changes in C4/XSLT.pm --- C4/XSLT.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/XSLT.pm b/C4/XSLT.pm index 93ae47ec85..a2134225d8 100644 --- a/C4/XSLT.pm +++ b/C4/XSLT.pm @@ -320,9 +320,9 @@ sub buildKohaItemsNamespace { $status = 'other'; $substatus = 'In transit'; } - elsif ($item->damaged && ! C4::Context->preference('AllowHoldsOnDamagedItems')) { - $status = 'other'; - $substatus = "Damaged"; + elsif ( $item->damaged && !C4::Context->preference('AllowHoldsOnDamagedItems') ) { + $status = 'other'; + $substatus = 'Damaged'; } elsif ($item->itemlost) { $status = 'other'; -- 2.39.5