From: Moritz Bunkus Date: Fri, 19 Apr 2013 08:34:40 +0000 (+0200) Subject: ReportGenerator: "data" forçiert stringifizieren, um auch mit SL::Locale::String... X-Git-Tag: release-3.1.0beta1~486^2~1 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=8836016be2514847f9ff343507dd505c509bd4fc;p=kivitendo-erp.git ReportGenerator: "data" forçiert stringifizieren, um auch mit SL::Locale::String zurechtzukommen --- diff --git a/SL/ReportGenerator.pm b/SL/ReportGenerator.pm index 40beabb92..d9edae200 100644 --- a/SL/ReportGenerator.pm +++ b/SL/ReportGenerator.pm @@ -349,7 +349,7 @@ sub prepare_html_content { $col->{CELL_ROWS} = [ ]; foreach my $i (0 .. scalar(@{ $col->{data} }) - 1) { push @{ $col->{CELL_ROWS} }, { - 'data' => $self->html_format($col->{data}->[$i]), + 'data' => '' . $self->html_format($col->{data}->[$i]), 'link' => $col->{link}->[$i], }; }