From: Thomas Heck Date: Tue, 4 Sep 2012 11:21:19 +0000 (+0200) Subject: SL::Template::Plugin::L::_J ums escaping von ' und \ erweitert X-Git-Tag: release-3.0.0beta1~253 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=51d0274dc6b40830d38bcc209bb9c402433c1b38;p=kivitendo-erp.git SL::Template::Plugin::L::_J ums escaping von ' und \ erweitert --- diff --git a/SL/Template/Plugin/L.pm b/SL/Template/Plugin/L.pm index f90a948d8..9cf5ebb85 100644 --- a/SL/Template/Plugin/L.pm +++ b/SL/Template/Plugin/L.pm @@ -28,8 +28,8 @@ sub _H { } sub _J { - my $string = "" . shift; - $string =~ s/\"/\\\"/g; + my $string = shift; + $string =~ s/(\"|\'|\\)/\\$1/g; return $string; }