summaryrefslogtreecommitdiff
path: root/httemplate/search/log.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-12-22 17:03:07 -0800
committerMark Wells <mark@freeside.biz>2015-12-22 17:06:44 -0800
commitc8f4149f2dc5a1f593a6ba422181c3d433cc6ef7 (patch)
tree1133aaa1a6c7abb750583aaba890ccfbf06ad938 /httemplate/search/log.html
parent3f7f6b5fa717facf9c63edc480071debfc02a33a (diff)
improve handling of internal errors from US Census geocoding, #39549
Diffstat (limited to 'httemplate/search/log.html')
-rw-r--r--httemplate/search/log.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/log.html b/httemplate/search/log.html
index a707928..b607f50 100644
--- a/httemplate/search/log.html
+++ b/httemplate/search/log.html
@@ -138,7 +138,7 @@ my $tt_sub = sub {
return '' if @context == 1 and length($log->message) <= 60;
my $html = '<DIV CLASS="tooltip">'.(shift @context).'</DIV>';
my $pre = '&#8627;';
- foreach (@context, $log->message) {
+ foreach (map encode_entities($_), @context, $log->message) {
$html .= "<DIV>$pre$_</DIV>";
$pre = '&nbsp;&nbsp;&nbsp;'.$pre;
}