From: Ivan Kohler Date: Sat, 11 Jul 2015 01:38:51 +0000 (-0700) Subject: elimiate warnings about RT method changing from EscapeUTF8 to EscapeHTML, RT#13852 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=88dbc5b1692d37bac7cd825ef4b61cf971c40677 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,