diff options
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/dashboard-toplist.html | 2 | ||||
-rw-r--r-- | httemplate/elements/small_prospect_view.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/elements/dashboard-toplist.html b/httemplate/elements/dashboard-toplist.html index c6362e0c9..f4a372519 100644 --- a/httemplate/elements/dashboard-toplist.html +++ b/httemplate/elements/dashboard-toplist.html @@ -21,7 +21,7 @@ <TR> <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> - <A HREF="view/cust_main.cgi?<% $custnum %>"><% $cust_main->name %></A> + <A HREF="view/cust_main.cgi?<% $custnum %>"><% $cust_main->name |h %></A> </TD> <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"> <& /elements/mcp_lint.html, 'cust_main'=>$cust_main &> diff --git a/httemplate/elements/small_prospect_view.html b/httemplate/elements/small_prospect_view.html index 4942e8dc7..26e830bc4 100644 --- a/httemplate/elements/small_prospect_view.html +++ b/httemplate/elements/small_prospect_view.html @@ -1,5 +1,5 @@ % my $link = "${p}view/prospect_main.html?". $prospect_main->prospectnum; -Prospect: <A HREF="<%$link%>"><% $prospect_main->name %></A> +Prospect: <A HREF="<%$link%>"><% $prospect_main->name |h %></A> <%init> my($prospect_main, %opt) = @_; |