Marius Cramer
2014-03-29 85e29ab6d2cd43e348cba2c6a73a7263217d139d
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'
         ),
@@ -1093,6 +1101,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',