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:37:06 -0400
commita3092d901441a8640c1f7f9be4b0374146e43b0a (patch)
tree4263d8ed1d5376d1b834ab6fc58dfa7610c91195
parent3c1daaa7219fa4eef418a0a1e3ae70018ef6791e (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 84f3979..2d12f7d 100644
--- a/FS/FS/UI/Web.pm
+++ b/FS/FS/UI/Web.pm
@@ -363,7 +363,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($_),