[freeside-commits] branch master updated. e0b82c355d234a29f73e032403d9a022b4996779

Ivan ivan at 420.am
Thu Nov 10 11:40:06 PST 2016


The branch, master has been updated
       via  e0b82c355d234a29f73e032403d9a022b4996779 (commit)
      from  d76c9ec573950fe8c4de29e8087a72b97c81168e (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 e0b82c355d234a29f73e032403d9a022b4996779
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Thu Nov 10 11:40:04 2016 -0800

    xss

diff --git a/httemplate/elements/table-tickets.html b/httemplate/elements/table-tickets.html
index b322a5f..9247e58 100644
--- a/httemplate/elements/table-tickets.html
+++ b/httemplate/elements/table-tickets.html
@@ -57,7 +57,7 @@ View
     </TD>
   
     <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
-      <A HREF=<%$href%>><% $ticket->{subject} %></A>
+      <A HREF=<%$href%>><% $ticket->{subject} |h %></A>
     </TD>
   
     <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
@@ -69,7 +69,7 @@ View
     </TD>
   
     <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
-      <% $ticket->{owner} %>
+      <% $ticket->{owner} |h %>
     </TD>
 
     <TD CLASS="grid" BGCOLOR="<% $bgcolor %>">
@@ -84,12 +84,13 @@ View
       <% $ticket->{content}
            ? $ticket->{content}.' ('.$ticket->{priority}.')'
            : $ticket->{priority}
+         |h
       %>
     </TD>
 
 %   if ( $ss_priority ) {
     <TD ALIGN="right" CLASS="grid" BGCOLOR="<% $bgcolor %>">
-      <% $ticket->{"CF.{$ss_priority}"} %>
+      <% $ticket->{"CF.{$ss_priority}"} |h %>
     </TD>
 %   }
 %   if ( $object->isa('FS::cust_main') ) {

-----------------------------------------------------------------------

Summary of changes:
 httemplate/elements/table-tickets.html |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)




More information about the freeside-commits mailing list