From: Ivan Kohler Date: Sat, 11 Jul 2015 01:38:53 +0000 (-0700) Subject: elimiate warnings about RT method changing from EscapeUTF8 to EscapeHTML, RT#13852 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=af5b632f566bffe51a5bce5607335581a6e4d064;p=freeside.git elimiate warnings about RT method changing from EscapeUTF8 to EscapeHTML, RT#13852 --- diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm index 297d591ea..ff57b4353 100644 --- a/FS/FS/Mason.pm +++ b/FS/FS/Mason.pm @@ -646,7 +646,8 @@ sub mason_interps { [ 'rt' => '%%%FREESIDE_DOCUMENT_ROOT%%%/rt' ], [ 'freeside' => '%%%FREESIDE_DOCUMENT_ROOT%%%' ], ], - escape_flags => { 'h' => \&RT::Interface::Web::EscapeUTF8, + escape_flags => { 'h' => \&RT::Interface::Web::EscapeHTML, + #u and j aren't used anymore? :/ 'u' => \&RT::Interface::Web::EscapeURI, 'j' => \&RT::Interface::Web::EscapeJS, 'js_string' => $js_string_sub,