From f84ae5d10b29fbe93366648ed2c6e78d22257385 Mon Sep 17 00:00:00 2001 From: Eugene Jose Espinoza Date: Tue, 5 Dec 2023 12:43:19 +0000 Subject: [PATCH] Bug 35238: Incorrect label markup in patron card creator printer profile edit form HTML element for Template name is changed from 'label for "template_name"' to 'span with "label" class'. So from: It should now be: Template name: To test: 1) Go to: Tools -> Patron card creator -> Edit printer profile. 2) Right click page and choose "View page source". 3) Locate the part with "Template name". It should read: Template name: --- .../intranet-tmpl/prog/en/modules/patroncards/edit-profile.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-profile.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-profile.tt index e1476ebecb..4719bb59b5 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-profile.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/patroncards/edit-profile.tt @@ -77,7 +77,7 @@
  • [% IF ( label_template ) %] - [% label_template | html %] + Template name: [% label_template | html %] [% ELSE %] Template name: Profile unassigned [% END %] -- 2.30.2