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:
Michael Kaufmann
2018-08-15 10:59:16 +02:00
parent d0c2888508
commit b777053133
2 changed files with 4 additions and 4 deletions

View File

@@ -170,7 +170,7 @@ return array(
'label' => $lng['customer']['diskspace'],
'type' => 'textul',
'value' => $result['diskspace'],
'maxlength' => 6,
'maxlength' => 16,
'mandatory' => true,
'ul_field' => $diskspace_ul
),
@@ -178,7 +178,7 @@ return array(
'label' => $lng['customer']['traffic'],
'type' => 'textul',
'value' => $result['traffic'],
'maxlength' => 4,
'maxlength' => 14,
'mandatory' => true,
'ul_field' => $traffic_ul
),