Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
agallavardin
fusiondirectory-plugins
Commits
6fc8f14f
Commit
6fc8f14f
authored
May 27, 2015
by
Côme Bernigaud
Committed by
Benoit Mortier
May 27, 2015
Browse files
Fixes #3785 TXT records are now authorized in global records
parent
8d83d750
Changes
1
Hide whitespace changes
Inline
Side-by-side
dns/admin/systems/services/dns/class_serviceDNSeditZone.inc
View file @
6fc8f14f
...
...
@@ -382,7 +382,7 @@ class servdnseditZone extends plugin
foreach
(
$this
->
Records
as
$name
=>
$values
)
{
/* only lower-case is allowed in record entries ... */
if
(
$values
[
'value'
]
!=
strtolower
(
$values
[
'value'
]))
{
if
((
$values
[
'type'
]
!=
'tXTRecord'
)
&&
(
$values
[
'value'
]
!=
strtolower
(
$values
[
'value'
]))
)
{
$message
[]
=
msgPool
::
invalid
(
$values
[
'type'
],
""
,
""
,
_
(
"Only lowercase allowed"
));
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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