summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-06-05 09:37:06 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-06-05 09:47:41 -0400
commitec89eda1ec48099ade076f8e547baeffbdb5632d (patch)
tree0f74ad36e7f6589828ccbef4c989f9c36c84402d
parent9a4d825975786479eea72440e4708faf80d505c7 (diff)
RT# 83436 - fixed Advanced Broadband Service Report when displaying phone numbers
-rw-r--r--FS/FS/UI/Web.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm
index bbb8e70..a4f9ac3 100644
--- a/FS/FS/UI/Web.pm
+++ b/FS/FS/UI/Web.pm
@@ -360,7 +360,7 @@ foreach my $phone_type ( FS::phone_type->get_phone_types() ) {
my $num = $phone_type->phonetypenum;
my @phones;
- foreach ($self->contact_list_name_phones) {
+ foreach (FS::cust_main::contact_list_name_phones($self)) {
my $data = [
{
'data' => $_->first.' '.$_->last.' '.FS::contact_phone::phonenum_pretty($_),