From 0cbba58ad003be84888cc9b87d7f7481c7aa30c6 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Mon, 4 Aug 2025 19:02:07 +0000 Subject: [PATCH] Bug 40592: Fix incorrect row highlighting on patron checkout history page To test: 1. Check out some items to a patron so they have a circulation history, the check in some of those items.. 2. Look at the patron's "Circulation history" table. There are four possible background colors for each row: #ffffff, #f3f4f4, #F9FAE0, and #FFFFCC. 3. Apply the patch and reload the page. 4. An orange/gold badge will appear under the "Return date" column of the table for items that have been checked out, and there will no longer be alternating, pale yellow rows. Sponsored-by: Athens County Public Libraries Signed-off-by: Caroline Cyr La Rose --- koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt index 9166f33f12c..26c99e59f4b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt @@ -82,7 +82,7 @@ [% FOREACH checkout IN all_checkouts %] [% SET item = checkout.item %] [% SET biblio = item.biblio %] - + [% IF checkout.onsite_checkout %] [% issuetype = 'onsite_checkout' | html %] -- 2.43.0