summaryrefslogtreecommitdiff
path: root/FS
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 10:11:20 -0400
commit403b8a5cbbf1132b19707aa48a4cde2de255866c (patch)
tree1e700d4f7e2340c42909243fd88ed58a424280b0 /FS
parenta0409c370a7b91e98b6f8773c7ac9b63e7c01c49 (diff)
RT# 83436 - fixed Advanced Broadband Service Report when displaying phone numbers
Diffstat (limited to 'FS')
-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 c2a600629..ab9b21ddf 100644
--- a/FS/FS/UI/Web.pm
+++ b/FS/FS/UI/Web.pm
@@ -359,7 +359,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($_),