diff options
| author | Christopher Burger <burgerc@freeside.biz> | 2019-05-28 10:55:29 -0400 |
|---|---|---|
| committer | Christopher Burger <burgerc@freeside.biz> | 2019-05-28 12:29:32 -0400 |
| commit | de9c24de9f0d26ddaee02915f5684884eced5ff0 (patch) | |
| tree | a28ad8573a7f6ac311ca749bfa5173bdeca778ec /httemplate/elements/select-cust-fields.html | |
| parent | d0ccab3fd755d1f3b81b8cfc27e99665ee3f20ec (diff) | |
RT# 77532 - fixed error where cust main fax not showing, and fixed checking of phonetypenum
Conflicts:
httemplate/search/cust_main.html
httemplate/view/cust_main/contacts_new.html
Diffstat (limited to 'httemplate/elements/select-cust-fields.html')
| -rw-r--r-- | httemplate/elements/select-cust-fields.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/elements/select-cust-fields.html b/httemplate/elements/select-cust-fields.html index 63e92ac3d..833f7c1af 100644 --- a/httemplate/elements/select-cust-fields.html +++ b/httemplate/elements/select-cust-fields.html @@ -6,7 +6,7 @@ foreach my $phone_type ( FS::phone_type->get_phone_types() ) { $contact_phone_list .= " | Contact ".$phone_type->typename." phone(s)"; } - @fields = map {s/\| Contact phone\(s\)/$contact_phone_list/g; $_; } @fields; + @fields = map {s/ \| Contact phone\(s\)/$contact_phone_list/g; $_; } @fields; $opt{'avail_fields'} ||= [ @fields ]; |
