From c5ca35f86604ad57b94c8d22ff78a320eaf624ce 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 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
    twice and
once => With patch you see once
    and
Signed-off-by: Lucas Gass Signed-off-by: Marcel de Rooy --- .../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.20.1