summaryrefslogtreecommitdiff
path: root/httemplate/view/svc_cert.cgi
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-03-10 22:28:34 -0700
committerIvan Kohler <ivan@freeside.biz>2013-03-10 22:28:34 -0700
commit57c5cf47f41739b57c563ddac09d0bd49d6d67b4 (patch)
tree187f1fdd593bbaeea03dfb2bd473a4dfe502f775 /httemplate/view/svc_cert.cgi
parentf37b4c3e04f6dfc56ba967e270b5b49edafe81f6 (diff)
hide svc_phone.sip_password like svc_acct._password unless showpasswords config is on, RT#20862
Diffstat (limited to 'httemplate/view/svc_cert.cgi')
-rw-r--r--httemplate/view/svc_cert.cgi8
1 files changed, 4 insertions, 4 deletions
diff --git a/httemplate/view/svc_cert.cgi b/httemplate/view/svc_cert.cgi
index 0cd66b422..964b808ab 100644
--- a/httemplate/view/svc_cert.cgi
+++ b/httemplate/view/svc_cert.cgi
@@ -17,7 +17,7 @@ my %labels = map { $_ => ( ref($fields->{$_})
my @fields = (
{ field=>'privatekey',
- value=> sub {
+ value_callback=> sub {
my $svc_cert = shift;
if ( $svc_cert->privatekey && $svc_cert->check_privatekey ) {
'<FONT COLOR="#33ff33">Verification OK</FONT>';
@@ -31,7 +31,7 @@ my @fields = (
qw( common_name organization organization_unit city state country cert_contact
),
{ 'field'=>'csr',
- 'value'=> sub {
+ 'value_callback'=> sub {
my $svc_cert = shift;
if ( $svc_cert->csr ) {
@@ -67,7 +67,7 @@ my @fields = (
},
},
{ 'field'=>'certificate',
- 'value'=> sub {
+ 'value_callback'=> sub {
my $svc_cert = shift;
if ( $svc_cert->certificate ) {
@@ -137,7 +137,7 @@ my @fields = (
},
},
{ 'field'=>'cacert',
- 'value'=> sub {
+ 'value_callback'=> sub {
my $svc_cert = shift;
if ( $svc_cert->cacert ) {