Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISPConfig
ISPConfig 3
Commits
5ebfd817
Commit
5ebfd817
authored
Jul 06, 2008
by
tbrehm
Browse files
Fixed a bug in Email regex for DNS Manager.
parent
0837aff0
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/web/dns/form/dns_soa.tform.php
View file @
5ebfd817
...
...
@@ -94,7 +94,7 @@ $form["tabs"]['dns_soa'] = array (
'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 @@ $form["tabs"]['dns_soa'] = array (
'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
View file @
5ebfd817
...
...
@@ -5,6 +5,7 @@ $wb["database_name_txt"] = 'Database name';
$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'
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment