summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2017-09-05 18:29:58 -0700
committerIvan Kohler <ivan@freeside.biz>2017-09-05 18:29:58 -0700
commit00f6a05e148ee90f04c9f38830cf9f1f601ab041 (patch)
tree3a1bf6e8e13e48ac311a07253e4fd464a020a254
parent35ac50b0ff66fc78aaa11baf8ae0199280645b96 (diff)
if a single entry has bad UTF-8 chars, error out on that entry only instead of the whole conf page
-rw-r--r--httemplate/config/config-view.cgi14
1 files changed, 9 insertions, 5 deletions
diff --git a/httemplate/config/config-view.cgi b/httemplate/config/config-view.cgi
index b02ab1af3..5f09b128a 100644
--- a/httemplate/config/config-view.cgi
+++ b/httemplate/config/config-view.cgi
@@ -212,11 +212,15 @@ invoice language options:
<tr>
<td id="<% $agentnum.$i->key.$n %>" bgcolor="#ffffff">
-<font size="-2"><pre><% encode_entities(join("\n",
- map { length($_) > 88 ? substr($_,0,88).'...' : $_ }
- $conf->config($i->key, $agentnum)
- ) )
-%></pre></font>
+
+% my $escaped = eval { encode_entities(join("\n",
+% map { length($_) > 88 ? substr($_,0,88).'...' : $_ }
+% $conf->config($i->key, $agentnum)
+% ) );
+% };
+% $escaped = $@ ? '('.encode_entities($@).')' : $escaped;
+<font size="-2"><pre><% $escaped %></pre></font>
+
</td>
</tr>