From 7fef1c83e2983f02ac6f9cccd11850ae240e6ed9 Mon Sep 17 00:00:00 2001 From: Laura_Escamilla Date: Fri, 25 Apr 2025 14:20:28 +0000 Subject: [PATCH] Bug 39688: Added non-breaking space between Suspended and until MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To test: 1. Log into Koha as an end user (not staff) http://localhost:8080/ 2. Search for a book 3. Put a hold on that book 4. Click the "Summary" link in the left column to view your summary page http://localhost:8080/cgi-bin/koha/opac-user.pl?opac-user-holds=1 5. Click the Holds tab to view your holds. 6. Click the "Suspend" button next to your hold, choose a date, and suspend the hold. 7. View the Status column on the Holds tab 8. Note it says Suspendeduntil and the date 9. Apply the patch. 10. Refresh the holds page. The ‘Suspendeduntil’ now shows as ‘Suspended until’. 11. Sign off and have a wonderful day! --- koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc index 576e2dcc51..d902695c53 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc @@ -147,7 +147,7 @@ [% ELSIF ( HOLD.is_in_processing ) %] Item in processing [% ELSIF ( HOLD.suspend ) %] - Suspended[% IF ( HOLD.suspend_until ) %]until [% HOLD.suspend_until | $KohaDates %][% END %] + Suspended[% IF ( HOLD.suspend_until ) %] until [% HOLD.suspend_until | $KohaDates %][% END %] [% ELSE %] [% IF HOLD.itemtype %] Pending for next available item of item type '[% ItemTypes.GetDescription( HOLD.itemtype ) | html %]' -- 2.39.5