allow a higher amount of diskspace and traffic to be entered in the forms, fixes #560
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -178,7 +178,7 @@ return array(
|
|||||||
'label' => $lng['customer']['diskspace'],
|
'label' => $lng['customer']['diskspace'],
|
||||||
'type' => 'textul',
|
'type' => 'textul',
|
||||||
'value' => 0,
|
'value' => 0,
|
||||||
'maxlength' => 6,
|
'maxlength' => 16,
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'ul_field' => $diskspace_ul
|
'ul_field' => $diskspace_ul
|
||||||
),
|
),
|
||||||
@@ -186,7 +186,7 @@ return array(
|
|||||||
'label' => $lng['customer']['traffic'],
|
'label' => $lng['customer']['traffic'],
|
||||||
'type' => 'textul',
|
'type' => 'textul',
|
||||||
'value' => 0,
|
'value' => 0,
|
||||||
'maxlength' => 4,
|
'maxlength' => 14,
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'ul_field' => $traffic_ul
|
'ul_field' => $traffic_ul
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -170,7 +170,7 @@ return array(
|
|||||||
'label' => $lng['customer']['diskspace'],
|
'label' => $lng['customer']['diskspace'],
|
||||||
'type' => 'textul',
|
'type' => 'textul',
|
||||||
'value' => $result['diskspace'],
|
'value' => $result['diskspace'],
|
||||||
'maxlength' => 6,
|
'maxlength' => 16,
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'ul_field' => $diskspace_ul
|
'ul_field' => $diskspace_ul
|
||||||
),
|
),
|
||||||
@@ -178,7 +178,7 @@ return array(
|
|||||||
'label' => $lng['customer']['traffic'],
|
'label' => $lng['customer']['traffic'],
|
||||||
'type' => 'textul',
|
'type' => 'textul',
|
||||||
'value' => $result['traffic'],
|
'value' => $result['traffic'],
|
||||||
'maxlength' => 4,
|
'maxlength' => 14,
|
||||||
'mandatory' => true,
|
'mandatory' => true,
|
||||||
'ul_field' => $traffic_ul
|
'ul_field' => $traffic_ul
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user