From f85aefbd0f63cdcd3ea93e3c2f6ab4c413ee562f Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Thu, 16 Jan 2014 19:19:30 -0800 Subject: [PATCH] escape cust_event.statustext so dumps coming back from failed transactions are viewable properly, RT#26700 --- httemplate/search/cust_event.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html index d47ce52f7..90566f2eb 100644 --- a/httemplate/search/cust_event.html +++ b/httemplate/search/cust_event.html @@ -69,7 +69,7 @@ my $status_sub = sub { my $cust_event = shift; my $status = $cust_event->status; - $status .= ': '.$cust_event->statustext + $status .= ': '. encode_entities($cust_event->statustext) if $cust_event->statustext; my $part_event = $cust_event->part_event; -- 2.11.0