Marius Cramer
2014-07-08 5d1c691970d8e30d4ab6e3ba9efcec98f858b1fc
interface/web/client/form/client.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'  => '',
@@ -250,7 +258,7 @@
         'formtype' => 'SELECT',
         'default' => (isset($conf['language']) ? strtoupper($conf['language']) : ''),
         'datasource' => array (  'type'          => 'SQL',
            'querystring'   => 'SELECT iso,printable_name FROM country ORDER BY iso ASC',
            'querystring'   => 'SELECT iso,printable_name FROM country ORDER BY printable_name ASC',
            'keyfield'      => 'iso',
            'valuefield'    => 'printable_name'
         ),
@@ -815,7 +823,7 @@
         'default' => '',
         'separator' => ',',
         'valuelimit' => 'client:web_php_options',
         'value'  => array('no' => 'Disabled', 'fast-cgi' => 'Fast-CGI', 'cgi' => 'CGI', 'mod' => 'Mod-PHP', 'suphp' => 'SuPHP', 'php-fpm' => 'PHP-FPM')
         'value'  => array('no' => 'Disabled', 'fast-cgi' => 'Fast-CGI', 'cgi' => 'CGI', 'mod' => 'Mod-PHP', 'suphp' => 'SuPHP', 'php-fpm' => 'PHP-FPM', 'hhvm' => 'HHVM')
      ),
      'limit_cgi' => array (
         'datatype' => 'VARCHAR',
@@ -952,6 +960,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',
@@ -1093,6 +1107,20 @@
         'rows'  => '',
         'cols'  => ''
      ),
      'limit_database_quota' => array (
         'datatype' => 'INTEGER',
         'formtype' => 'TEXT',
         'validators' => array (  0 => array ( 'type' => 'ISINT',
               'errmsg'=> 'limit_database_quota_error_notint'),
         ),
         'default' => '-1',
         'value'  => '',
         'separator' => '',
         'width'  => '10',
         'maxlength' => '10',
         'rows'  => '',
         'cols'  => ''
      ),
      'limit_cron' => array (
         'datatype'  => 'INTEGER',
         'formtype'  => 'TEXT',