View | Details | Raw Unified | Return to bug 24131
Collapse All | Expand All

(-)a/installer/install.pl (-1 / +1 lines)
Lines 398-404 elsif ( $step && $step == 3 ) { Link Here
398
        close $fh;
398
        close $fh;
399
        if (@report) {
399
        if (@report) {
400
            $template->param( update_report =>
400
            $template->param( update_report =>
401
                  [ map { { line => $_ } } split( /\n/, join( '', @report ) ) ]
401
                  [ map { local $_ = $_; $_ =~ s/\t/  /g; { line => $_ } } split( /\n/, join( '', @report ) ) ]
402
            );
402
            );
403
            $template->param( has_update_succeeds => 1 );
403
            $template->param( has_update_succeeds => 1 );
404
        }
404
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt (-2 / +2 lines)
Lines 1-3 Link Here
1
[% USE raw %]
1
[% INCLUDE 'doc-head-open.inc' %]
2
[% INCLUDE 'doc-head-open.inc' %]
2
3
3
<title>Koha &rsaquo; Web installer &rsaquo;
4
<title>Koha &rsaquo; Web installer &rsaquo;
Lines 249-255 Link Here
249
                        <p>Update report :</p>
250
                        <p>Update report :</p>
250
                        <ul>
251
                        <ul>
251
                            [% FOREACH update_repor IN update_report %]
252
                            [% FOREACH update_repor IN update_report %]
252
                                <li>[% update_repor.line | html %]</li>
253
                                <li>[% update_repor.line | $raw %]</li>
253
                            [% END %]
254
                            [% END %]
254
                        </ul>
255
                        </ul>
255
                    [% END %]
256
                    [% END %]
256
- 

Return to bug 24131