From 62c0e92c5e2740b63de4ea45094529d0ee3f46a0 Mon Sep 17 00:00:00 2001 From: Dominik <info@profi-webdesign.net> Date: Wed, 09 Apr 2014 15:51:47 -0400 Subject: [PATCH] changed default values (now all) --- interface/web/client/form/reseller.tform.php | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/interface/web/client/form/reseller.tform.php b/interface/web/client/form/reseller.tform.php index 8db74b6..9d39a99 100644 --- a/interface/web/client/form/reseller.tform.php +++ b/interface/web/client/form/reseller.tform.php @@ -166,6 +166,14 @@ 'password' => array ( 'datatype' => 'VARCHAR', 'formtype' => 'PASSWORD', + 'validators' => array( + 0 => array( + 'type' => 'CUSTOM', + 'class' => 'validate_password', + 'function' => 'password_check', + 'errmsg' => 'weak_password_txt' + ) + ), 'encryption'=> 'CRYPT', 'default' => '', 'value' => '', @@ -946,6 +954,12 @@ 'rows' => '', 'cols' => '' ), + 'limit_backup' => array ( + 'datatype' => 'VARCHAR', + 'formtype' => 'CHECKBOX', + 'default' => 'y', + 'value' => array(0 => 'n', 1 => 'y') + ), 'default_dnsserver' => array ( 'datatype' => 'INTEGER', 'formtype' => 'SELECT', -- Gitblit v1.9.1