From 1b81d2d1878771f908782995304ffd0b6d7ed8d4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 11 Mar 2020 12:00:25 +0100 Subject: [PATCH] Bug 24131: Remove bullet points for secondary descriptions Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- .../intranet-tmpl/prog/en/modules/installer/step3.tt | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt index bf8aa925f5..b89d236b16 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt @@ -249,8 +249,13 @@ [% IF ( has_update_succeeds ) %]

Update report :

    - [% FOREACH update_repor IN update_report %] -
  • [% update_repor.line | $raw %]
  • + [% FOREACH l IN update_report %] + [% SET line = l.line %] + [% IF line.match('^Upgrade to') %] +
  • [% line | $raw %]
  • + [% ELSE %] + [% line | $raw %]
    + [% END %] [% END %]
[% END %] -- 2.21.1 (Apple Git-122.3)