summaryrefslogtreecommitdiff
path: root/httemplate/elements/select-cust-fields.html
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-05-28 10:55:29 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-05-28 10:55:29 -0400
commit5b0df166c22e13eba83fabee858846ead6a54141 (patch)
treee87ee485d92df094421db67dd89088bf01e1b4f7 /httemplate/elements/select-cust-fields.html
parent5ae6df67cbcac031e4b2731f337f42a17af5777a (diff)
RT# 77532 - fixed error where cust main fax not showing, and fixed checking of phonetypenum
Diffstat (limited to 'httemplate/elements/select-cust-fields.html')
-rw-r--r--httemplate/elements/select-cust-fields.html2
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 ];