Bug 24131: Remove bullet points for secondary descriptions
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Wed, 11 Mar 2020 11:00:25 +0000 (12:00 +0100)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Tue, 24 Mar 2020 10:42:24 +0000 (10:42 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt

index bf8aa92..b89d236 100644 (file)
                     [% IF ( has_update_succeeds ) %]
                         <p>Update report :</p>
                         <ul>
-                            [% FOREACH update_repor IN update_report %]
-                                <li>[% update_repor.line | $raw %]</li>
+                            [% FOREACH l IN update_report %]
+                                [% SET line = l.line %]
+                                [% IF line.match('^Upgrade to') %]
+                                    <li>[% line | $raw %]</li>
+                                [% ELSE %]
+                                    [% line | $raw %]<br/>
+                                [% END %]
                             [% END %]
                         </ul>
                     [% END %]