From 3710fa77357128d4adef0179203d2234cb6af25d Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Tue, 12 Oct 2021 08:49:48 -1000 Subject: [PATCH] Bug 29213: Fix typo ol in member-alt-contact-style.inc 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
    twice and
once => With patch you see once
    and
--- .../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' %]
- Alternate contact
    + Alternate contact
      [% IF Koha.Preference( 'AddressFormat' ) %] [% PROCESS "member-alt-contact-style-${ Koha.Preference( 'AddressFormat' ) }" %] -- 2.32.0