summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorkhoff <khoff>2005-03-30 21:22:44 +0000
committerkhoff <khoff>2005-03-30 21:22:44 +0000
commit14783ddd1917b67292711ce6f7443f46f1af02e6 (patch)
tree6b4434a63e4820ceb135e49d5d108b66f7aed894 /FS
parent1acd09579366e4deb95f75af565c7e5a887029e9 (diff)
Have to pass @_ to FS::svc_www::domain_record in case we're really a FS::h_svc_www object.
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/cust_svc.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_svc.pm b/FS/FS/cust_svc.pm
index c91eba103..e98695376 100644
--- a/FS/FS/cust_svc.pm
+++ b/FS/FS/cust_svc.pm
@@ -308,7 +308,7 @@ sub _svc_label {
} elsif ( $svcdb eq 'svc_domain' ) {
$tag = $svc_x->getfield('domain');
} elsif ( $svcdb eq 'svc_www' ) {
- my $domain_record = $svc_x->domain_record;
+ my $domain_record = $svc_x->domain_record(@_);
$tag = $domain_record->zone;
} elsif ( $svcdb eq 'svc_broadband' ) {
$tag = $svc_x->ip_addr;