summaryrefslogtreecommitdiff
path: root/FS/FS
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-07-10 18:38:53 -0700
committerIvan Kohler <ivan@freeside.biz>2015-07-10 18:38:53 -0700
commitaf5b632f566bffe51a5bce5607335581a6e4d064 (patch)
treee6ca33634594944071bdec70a562ce6d180bb53f /FS/FS
parentee7f41f5c1c1a078cba26e1c2ddd1ec8c6ffc337 (diff)
elimiate warnings about RT method changing from EscapeUTF8 to EscapeHTML, RT#13852
Diffstat (limited to 'FS/FS')
-rw-r--r--FS/FS/Mason.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/Mason.pm b/FS/FS/Mason.pm
index 297d591..ff57b43 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,