summaryrefslogtreecommitdiff
path: root/httemplate/search/cust_msg.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2016-12-14 13:00:24 -0800
committerMark Wells <mark@freeside.biz>2016-12-14 13:41:58 -0800
commitc74a93a8460dc0e867e93a5ded0c63a1585b86c9 (patch)
treef8b4ad3cb3e8149086f14c73b9b154fc898565c0 /httemplate/search/cust_msg.html
parented39371920249d4ce54bdaaf1f67b60fab2df834 (diff)
fix parsing of multiple To: addresses, #73241
Diffstat (limited to 'httemplate/search/cust_msg.html')
-rw-r--r--httemplate/search/cust_msg.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/httemplate/search/cust_msg.html b/httemplate/search/cust_msg.html
index 33e1815c6..65460f7b9 100644
--- a/httemplate/search/cust_msg.html
+++ b/httemplate/search/cust_msg.html
@@ -19,7 +19,10 @@
ucfirst($_[0]->msgtype) || $_[0]->msgname
},
sub {
- join('<BR>', split(/,\s*/, $_[0]->env_to) )
+ join('<BR>',
+ map { encode_entities($_->format) }
+ Email::Address->parse($_[0]->env_to)
+ )
},
'status',
sub { encode_entities($_[0]->error) },