summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-01-16 19:19:27 -0800
committerIvan Kohler <ivan@freeside.biz>2014-01-16 19:19:27 -0800
commit667092dd41cd5ffffbaa9fa0bb93b998aed565bd (patch)
tree8ad21844914967d4c69e33d7dbad036bff5e58a9
parent950a94ad6ce36d842d788101a5330b009d44a95e (diff)
escape cust_event.statustext so dumps coming back from failed transactions are viewable properly, RT#26700
-rw-r--r--httemplate/search/cust_event.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html
index bfc5f43..f1b9951 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;