Fixed: Fixed: FS#2569 - Check for duplicate mailing list names is missing
| | |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'NOTEMPTY', |
| | | 'errmsg'=> 'listname_error_empty'), |
| | | 1 => array ( 'type' => 'UNIQUE', |
| | | 'errmsg'=> 'listname_error_unique'), |
| | | ), |
| | | 'default' => '', |
| | | 'value' => '', |
| | |
| | | 'quota' => array ( |
| | | 'datatype' => 'VARCHAR', |
| | | 'formtype' => 'TEXT', |
| | | 'validators' => array ( 0 => array ( 'type' => 'ISINT', |
| | | 'validators' => array ( 1 => array ( 'type' => 'ISINT', |
| | | 'errmsg'=> 'quota_error_isint'), |
| | | 1 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^([0-9]*)$/', |
| | | 0 => array ( 'type' => 'REGEX', |
| | | 'regex' => '/^([0-9]{1,})$/', |
| | | 'errmsg'=> 'quota_error_value'), |
| | | ), |
| | | 'default' => '-1', |
| | |
| | | $wb['repeat_password_txt'] = 'Repeat Password'; |
| | | $wb['password_mismatch_txt'] = 'The passwords do not match.'; |
| | | $wb['password_match_txt'] = 'The passwords do match.'; |
| | | $wb["listname_error_unique"] = 'There is already a mailinlist with name on the server. Please choose a different listname.'; |
| | | $wb["email_error_isemail"] = 'Email address is invalid.'; |
| | | ?> |