tbrehm
2008-07-06 5ebfd817903d8af41f9553cd37d87c9080248004
Fixed a bug in Email regex for DNS Manager.
2 files modified
7 ■■■■■ changed files
interface/web/dns/form/dns_soa.tform.php 6 ●●●● patch | view | raw | blame | history
interface/web/sites/lib/lang/en_database.lng 1 ●●●● patch | view | raw | blame | history
interface/web/dns/form/dns_soa.tform.php
@@ -94,7 +94,7 @@
            'datatype'    => 'VARCHAR',
            'formtype'    => 'TEXT',
            'validators'    => array (     0 => array (    'type'    => 'REGEX',
                                                        'regex' => '/^[\w\.\-]{0,64}$/',
                                                        'regex' => '/^[\w\.\-]{1,64}$/',
                                                        'errmsg'=> 'ns_error_regex'),
                                    ),
            'default'    => '',
@@ -107,8 +107,8 @@
            'formtype'    => 'TEXT',
            'validators'    => array (     0 => array (    'type'    => 'NOTEMPTY',
                                                        'errmsg'=> 'mbox_error_empty'),
                                        0 => array (    'type'    => 'REGEX',
                                                        'regex' => '/^[\w\.\-]{0,64}$/',
                                        1 => array (    'type'    => 'REGEX',
                                                        'regex' => '/^[\w\.\-]{0,64}\.$/',
                                                        'errmsg'=> 'mbox_error_regex'),
                                    ),
            'default'    => '',
interface/web/sites/lib/lang/en_database.lng
@@ -5,6 +5,7 @@
$wb["database_user_txt"] = 'Database user';
$wb["database_password_txt"] = 'Database password';
$wb["remote_access_txt"] = 'Remote Access';
$wb["client_txt"] = 'Client';
$wb["active_txt"] = 'Active';
$wb["btn_save_txt"] = 'Save';
$wb["btn_cancel_txt"] = 'Cancel';