[freeside-commits] branch FREESIDE_2_3_BRANCH updated. f85aefbd0f63cdcd3ea93e3c2f6ab4c413ee562f

Ivan ivan at 420.am
Thu Jan 16 19:19:31 PST 2014


The branch, FREESIDE_2_3_BRANCH has been updated
       via  f85aefbd0f63cdcd3ea93e3c2f6ab4c413ee562f (commit)
      from  ba10db86bf541ac72be47de1e9aa5e7d43dc29b6 (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 f85aefbd0f63cdcd3ea93e3c2f6ab4c413ee562f
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Thu Jan 16 19:19:30 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 d47ce52..90566f2 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