[freeside-commits] branch FREESIDE_3_BRANCH updated. 6ba52ddb56dd7dfffdf39206bac6bbbcb0bb416e
Ivan
ivan at 420.am
Thu Jan 16 19:19:29 PST 2014
The branch, FREESIDE_3_BRANCH has been updated
via 6ba52ddb56dd7dfffdf39206bac6bbbcb0bb416e (commit)
from 4a6f0b1b2462bfb3391808959624a4c7336119db (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6ba52ddb56dd7dfffdf39206bac6bbbcb0bb416e
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Jan 16 19:19:28 2014 -0800
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 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;
-----------------------------------------------------------------------
Summary of changes:
httemplate/search/cust_event.html | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list