diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2018-06-22 14:55:34 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2018-06-22 14:55:34 -0400 |
| commit | f9ea5ad4c0ab886ee546012e8a6adec5a3dbf763 (patch) | |
| tree | 17ceecd6bd546d0ee94b9365cdf2da15d7ade33e /FS/FS | |
| parent | 3ffc2c0afc7d48282449be768bd2c36c2410e3c9 (diff) | |
RT# 73964 - V3 fixes for backport
Diffstat (limited to 'FS/FS')
| -rw-r--r-- | FS/FS/cust_main_Mixin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_main_Mixin.pm b/FS/FS/cust_main_Mixin.pm index aa0395a4a..ccd1b84c9 100644 --- a/FS/FS/cust_main_Mixin.pm +++ b/FS/FS/cust_main_Mixin.pm @@ -487,7 +487,7 @@ sub email_search_result { if (!@classes) { @classes = ( 'invoice' ); } - my @to = $cust_main->contact_list_email(@classes); + my @to = $to ? split(',', $to) : $cust_main->contact_list_email(@classes); next if !@to; %message = ( |
