From c5ca35f86604ad57b94c8d22ff78a320eaf624ce Mon Sep 17 00:00:00 2001 From: Fridolin Somers <fridolin.somers@biblibre.com> Date: Tue, 12 Oct 2021 08:49:48 -1000 Subject: [PATCH] Bug 29213: Fix typo ol in member-alt-contact-style.inc Content-Type: text/plain; charset=utf-8 There is a typo in member-alt-contact-style.inc, tag ol is open twice for alternate contact. Test plan : 1) Create new patron 2) Look at HTML structure in "Alternate contact" section => Without patch you see <ol> twice and </ol> once => With patch you see once <ol> and </ol> Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- .../intranet-tmpl/prog/en/includes/member-alt-contact-style.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-contact-style.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-contact-style.inc index 645bb99e95..6211c412af 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-contact-style.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/member-alt-contact-style.inc @@ -1,7 +1,7 @@ [% USE Koha %] [% BLOCK 'alt-contact-style' %] <fieldset class="rows" id="memberentry_altaddress"> - <legend id="alt_contact_lgd">Alternate contact</legend><ol> + <legend id="alt_contact_lgd">Alternate contact</legend> <ol> [% IF Koha.Preference( 'AddressFormat' ) %] [% PROCESS "member-alt-contact-style-${ Koha.Preference( 'AddressFormat' ) }" %] -- 2.20.1