From: Ivan Kohler Date: Fri, 5 Feb 2016 12:46:51 +0000 (-0800) Subject: xss X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=3ded5e72c073b5291b02eff3131b74d834d27867 xss --- diff --git a/httemplate/misc/confirm-address_standardize.html b/httemplate/misc/confirm-address_standardize.html index 0a05c70bd..9d1a5c135 100644 --- a/httemplate/misc/confirm-address_standardize.html +++ b/httemplate/misc/confirm-address_standardize.html @@ -34,18 +34,18 @@ Confirm address standardization % if ( $old{$pre.'company'} ) { - <% $old{$pre.'company'} %> + <% $old{$pre.'company'} |h %> % } - <% $old{$pre.'address1'} %> + <% $old{$pre.'address1'} |h %> <% $new{$pre.'error'} %> - <% $old{$pre.'address2'} %> + <% $old{$pre.'address2'} |h %> - <% $old{$pre.'city'} %>, <% $old{$pre.'state'} %> <% $old{$pre.'zip'} %> + <% $old{$pre.'city'} |h %>, <% $old{$pre.'state'} |h %> <% $old{$pre.'zip'} |h %> % } else { # not an error % $rows++ if !$new{$pre.'addr_clean'}; @@ -68,21 +68,21 @@ Confirm address standardization % if ( $old{$pre.'company'} ) { - <% $old{$pre.'company'} %> - <% $new{$pre.'company'} %> + <% $old{$pre.'company'} |h %> + <% $new{$pre.'company'} |h %> % } - <% $old{$pre.'address1'} %> - <% $new{$pre.'address1'} %> + <% $old{$pre.'address1'} |h %> + <% $new{$pre.'address1'} |h %> - <% $old{$pre.'address2'} %> - <% $new{$pre.'address2'} %> + <% $old{$pre.'address2'} |h %> + <% $new{$pre.'address2'} |h %> - <% $old{$pre.'city'} %>, <% $old{$pre.'state'} %> <% $old{$pre.'zip'} %> - <% $new{$pre.'city'} %>, <% $new{$pre.'state'} %> <% $new{$pre.'zip'} %> + <% $old{$pre.'city'} |h %>, <% $old{$pre.'state'} |h %> <% $old{$pre.'zip'} |h %> + <% $new{$pre.'city'} |h %>, <% $new{$pre.'state'} |h %> <% $new{$pre.'zip'} |h %> % } # if error diff --git a/httemplate/misc/confirm-censustract.html b/httemplate/misc/confirm-censustract.html index 024bc17c4..10ae91812 100644 --- a/httemplate/misc/confirm-censustract.html +++ b/httemplate/misc/confirm-censustract.html @@ -13,8 +13,8 @@ Census tract error Confirm census tract % }
-<% $location{address1} %> <% $location{address2} %>
-<% $location{city} %>, <% $location{state} %> <% $location{zip} %>
+<% $location{address1} |h %> <% $location{address2} |h %>
+<% $location{city} |h %>, <% $location{state} |h %> <% $location{zip} |h %>

% my $querystring = "census_year=$year&latitude=".$cache->get('latitude').'&longitude='.$cache->get('longitude');