tbrehm
2009-09-04 d78c3f52999d4256056cdf979dcc668fbab8b0cb
Fixed a problem with maildir quota.
2 files modified
4 ■■■■ changed files
interface/web/mail/form/mail_user.tform.php 2 ●●● patch | view | raw | blame | history
interface/web/mail/lib/lang/en_mail_user.lng 2 ●●● patch | view | raw | blame | history
interface/web/mail/form/mail_user.tform.php
@@ -94,7 +94,7 @@
            'validators'    => array (     0 => array (    'type'    => 'ISINT',
                                                        'errmsg'=> 'quota_error_isint'),
                                        1 => array (    'type'    => 'REGEX',
                                                        'regex' => '/^(-1)|([1-9][0-9]*)$/',
                                                        'regex' => '/^([0-9]*)$/',
                                                        'errmsg'=> 'quota_error_value'),
                                    ),
            'default'    => '-1',
interface/web/mail/lib/lang/en_mail_user.lng
@@ -28,5 +28,5 @@
$wb["disableimap_txt"] = 'Disable IMAP';
$wb["disablepop3_txt"] = 'Disable POP3';
$wb["duplicate_alias_or_forward_txt"] = 'There is already an alias or forwrd with this email address.';
$wb["quota_error_value"] = 'Invalid quota value. Allowed values are: -1 for unlimited or numbers > 1';
$wb["quota_error_value"] = 'Invalid quota value. Allowed values are: 0 for unlimited or numbers > 1';
?>