From: Moritz Bunkus Date: Mon, 11 Feb 2008 11:15:07 +0000 (+0000) Subject: Form::quote_html gibt es nicht mehr. X-Git-Tag: release-2.6.0beta1~240 X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/commitdiff_plain/7bd5c7452a9b5fa952ec1925efd3d5454e54ee81 Form::quote_html gibt es nicht mehr. --- diff --git a/SL/Template/Plugin/LxERP.pm b/SL/Template/Plugin/LxERP.pm index a6bd06a80..accdae080 100644 --- a/SL/Template/Plugin/LxERP.pm +++ b/SL/Template/Plugin/LxERP.pm @@ -62,7 +62,7 @@ sub _turn90_word { my $self = shift; my $word = shift || ""; - return join '
', map { $main::form->quote_html($_) } split(m//, $word); + return join '
', map { $locale->quote_special_chars('HTML', $_) } split(m//, $word); } sub turn90 {