From 67704665c82a8498862c8a4954f2fe693a38af9c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Tue, 10 Dec 2024 14:44:57 +0000 Subject: [PATCH] Bug 38665: Fix markup error in Additional fields template title The logic of the title tag construction should not result in a caret preceding the first element on the Additional fields main page. To test, apply the patch and go to Administration -> Additional fields. There should be no caret appearing at the start of the page title information: Additional fields > Administration > Koha Other pages (listing additional fields, adding additional fields, etc) should have the correct title, e.g. New field > Table 'aqbasket' > Additional fields > Administration > Koha Sponsored-by: Athens County Public Libraries Signed-off-by: David Nind --- .../prog/en/modules/admin/additional-fields.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/additional-fields.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/additional-fields.tt index 3cf17ac616..450884524e 100755 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/additional-fields.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/additional-fields.tt @@ -12,10 +12,10 @@ [% ELSE %] [% t("New field") | html %] › [% END %] - [% tx("Table '{table_name}'", { table_name = tablename } ) | html %] + [% tx("Table '{table_name}'", { table_name = tablename } ) | html %] › [% CASE 'list' %] - [% tx("Table '{table_name}'", { table_name = tablename } ) | html %] - [% END %] › + [% tx("Table '{table_name}'", { table_name = tablename } ) | html %] › + [% END %] [% t("Additional fields") | html %] › [% t("Administration") | html %] › [% t("Koha") | html %] -- 2.39.5