diff options
author | mark <mark> | 2011-07-01 05:33:55 +0000 |
---|---|---|
committer | mark <mark> | 2011-07-01 05:33:55 +0000 |
commit | 4b80fe118da16b21603fcdbd090bc03d8fbf0578 (patch) | |
tree | fe5960c7c4ad7514dc46bd37e8e09cb86f266845 /httemplate/search/cust_msg.html | |
parent | 2c69cd41531a493c45ea72da3aa379fcc9f70aa9 (diff) |
send email from customer view, #13444
Diffstat (limited to 'httemplate/search/cust_msg.html')
-rw-r--r-- | httemplate/search/cust_msg.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/httemplate/search/cust_msg.html b/httemplate/search/cust_msg.html index 7932ab3a2..64fae30bd 100644 --- a/httemplate/search/cust_msg.html +++ b/httemplate/search/cust_msg.html @@ -16,7 +16,9 @@ $date ? time2str('%Y-%m-%d %T',$_[0]->_date) : '' }, 'msgname', - 'env_to', + sub { + join('<BR>', split(/,\s*/, $_[0]->env_to) ) + }, 'status', sub { encode_entities($_[0]->error) }, ], @@ -83,7 +85,6 @@ my $sub_popup_link = sub { }; my %color = ( - 'prepared' => '0000FF', 'failed' => 'FF0000', 'sent' => '', ); @@ -104,11 +105,10 @@ include('/elements/input-date-field.html', include('/elements/select.html', 'field' => 'status', 'curr_value' => $cgi->param('status') || '', - 'options' => [ '', 'failed', 'sent', 'prepared' ], + 'options' => [ '', 'failed', 'sent', ], 'labels' => { '' => '(any)', 'failed' => 'failed', - 'sent' => 'sent', - 'prepared'=> 'prepared' }, + 'sent' => 'sent', }, ) . '</TD> <TD><INPUT type="submit" value="Search"></TD></TR> |