Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
ff762ad1
Commit
ff762ad1
authored
Jun 06, 2020
by
IKEDA Soji
Browse files
"false" values in XML file prevent list creation (#953)
This bug was injected at 6.2.49b.2 (
9b562c6b
).
parent
0fa53762
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/Sympa/Config_XML.pm
View file @
ff762ad1
...
...
@@ -168,7 +168,7 @@ sub _getChildren {
if
(
$type
==
1
)
{
# ELEMENT_NODE
my
$values
=
_getChildren
(
$child
);
return
undef
unless
$values
;
return
undef
unless
defined
$values
;
if
(
$child
->
getAttribute
('
multiple
'))
{
push
@
{
$multiple_nodes
->
{
$childName
}},
$values
;
...
...
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