From: Ivan Kohler Date: Fri, 17 Jan 2014 03:19:27 +0000 (-0800) Subject: escape cust_event.statustext so dumps coming back from failed transactions are viewab... X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=667092dd41cd5ffffbaa9fa0bb93b998aed565bd escape cust_event.statustext so dumps coming back from failed transactions are viewable properly, RT#26700 --- diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html index bfc5f43e8..f1b99510a 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;