@@ -, +, @@ HTML --- C4/Installer.pm | 12 +++++++++++- .../intranet-tmpl/prog/en/modules/installer/step3.tt | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) --- a/C4/Installer.pm +++ a/C4/Installer.pm @@ -26,6 +26,7 @@ use YAML::XS; use File::Slurp qw( read_file ); use DBI; +use HTML::FromANSI (); use C4::Context; use Koha::Schema; use Koha; @@ -818,8 +819,17 @@ sub generate_output_db_entry { push @output, sprintf "\t%s", $line; } } + my @coutput; + foreach my $line ( @output ) { - return \@output; + my $h = HTML::FromANSI->new( + tt => 0, + font_face => '', + style => '', + ); + push @coutput, $h->ansi2html($line); + } + return \@coutput; } sub get_atomic_updates { --- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt @@ -381,7 +381,7 @@