Skip to content
Snippets Groups Projects
Commit 621c4363 authored by Florian Schaal's avatar Florian Schaal
Browse files

add db-quota to reseller-limits (#4056)

parent e5bd8916
No related branches found
No related tags found
No related merge requests found
...@@ -1267,6 +1267,20 @@ $form["tabs"]['limits'] = array ( ...@@ -1267,6 +1267,20 @@ $form["tabs"]['limits'] = array (
'rows' => '', 'rows' => '',
'cols' => '' '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 ( 'limit_cron' => array (
'datatype' => 'INTEGER', 'datatype' => 'INTEGER',
'formtype' => 'TEXT', 'formtype' => 'TEXT',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment