diff options
Diffstat (limited to 'httemplate/view')
-rw-r--r-- | httemplate/view/svc_phone.cgi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/httemplate/view/svc_phone.cgi b/httemplate/view/svc_phone.cgi index 2733e258e..76ee7397d 100644 --- a/httemplate/view/svc_phone.cgi +++ b/httemplate/view/svc_phone.cgi @@ -1,16 +1,10 @@ <% include('elements/svc_Common.html', 'table' => 'svc_phone', - 'fields' => [qw( - countrycode - phonenum - pbx_title - sip_password - pin - phone_name - )], + 'fields' => \@fields, 'labels' => { 'countrycode' => 'Country code', 'phonenum' => 'Phone number', + 'domain' => 'Domain', 'pbx_title' => 'PBX', 'sip_password' => 'SIP password', 'pin' => 'PIN', @@ -21,6 +15,12 @@ %> <%init> +my $conf = new FS::Conf; + +my @fields = qw( countrycode phonenum ); +push @fields, 'domain' if $conf->exists('svc_phone-domain'); +push @fields, qw( pbx_title sip_password pin phone_name ); + my $html_foot = sub { my $svc_phone = shift; |