From 32dcc8752f280299f0e364ccebcc092db8f2cb4e Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Tue, 05 Apr 2016 12:17:42 -0400 Subject: [PATCH] Changed autodetect messages from WARN to INFO in non forced mode. --- interface/web/dns/form/dns_soa.tform.php | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/interface/web/dns/form/dns_soa.tform.php b/interface/web/dns/form/dns_soa.tform.php index 1e4f9a6..05e9157 100644 --- a/interface/web/dns/form/dns_soa.tform.php +++ b/interface/web/dns/form/dns_soa.tform.php @@ -197,7 +197,7 @@ 'range' => '60:', 'errmsg'=> 'minimum_range_error'), ), - 'default' => '86400', + 'default' => '3600', 'value' => '', 'width' => '10', 'maxlength' => '10' @@ -264,6 +264,20 @@ 'default' => 'Y', 'value' => array(0 => 'N', 1 => 'Y') ), + 'dnssec_wanted' => array ( + 'datatype' => 'VARCHAR', + 'formtype' => 'CHECKBOX', + 'default' => 'Y', + 'value' => array(0 => 'N', 1 => 'Y') + ), + 'dnssec_info' => array ( + 'datatype' => 'TEXT', + 'formtype' => 'TEXTAREA', + 'default' => '', + 'value' => '', + 'width' => '30', + 'maxlength' => '10000' + ), //################################# // ENDE Datatable fields //################################# -- Gitblit v1.9.1