diff options
author | Mark Wells <mark@freeside.biz> | 2015-12-22 17:03:07 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2015-12-22 17:03:07 -0800 |
commit | e1aa1019e11d7a73fcf90a87dd59c71ed90adce5 (patch) | |
tree | 45dc56d7e66011fd8d9d833c083ad11dd306cf44 /httemplate/search/log.html | |
parent | cad256dd690aa4607f3715f2140d77dff4a4bd68 (diff) |
improve handling of internal errors from US Census geocoding, #39549
Diffstat (limited to 'httemplate/search/log.html')
-rw-r--r-- | httemplate/search/log.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/search/log.html b/httemplate/search/log.html index a707928d7..b607f505d 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 = '↳'; - foreach (@context, $log->message) { + foreach (map encode_entities($_), @context, $log->message) { $html .= "<DIV>$pre$_</DIV>"; $pre = ' '.$pre; } |