From 904dbdf5cb9be61d514c4bb8daa5c3fce33f208b Mon Sep 17 00:00:00 2001 From: David Nind Date: Mon, 14 Nov 2022 21:14:40 +0000 Subject: [PATCH] Bug 32194: Capitalize "No" values for the patron categories "Can be guarantee" column This fixes the display of the patron categories "Can be guarantee" column so that "No" values have a capital "N". Test plan: 1. Go to Administration > Patrons and circulation > Patron categories. 2. Note that for the "Can be guarantee" column, it shows "Yes" values with a capital "Y" and "no" values with a lowercase "n". 3. Apply the patch. 4. Refresh the page. 5. Note that any "No" values now have a capital "N". 6. Sign off D: Signed-off-by: David Nind Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt index 75f94e970a..2bb5921b81 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/categories.tt @@ -690,7 +690,7 @@ [% END %] [% END %] - [% IF category.can_be_guarantee %] Yes [% ELSE %] no [% END %] + [% IF category.can_be_guarantee %] Yes [% ELSE %] No [% END %] [% SWITCH category.default_privacy %] [% CASE 'default' %] -- 2.30.2