You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a XML file used for list creation contains a "false" value (any value that evaluate as false in boolean context), the list is not created.
In the logs, we see the following error : sympa[15053]: err main::#764 > main::instantiate#1325 > Sympa::Spindle::spin#95 > Sympa::Request::Handler::create_automatic_list::_twist#68 Error in representation data with these xml data
In our family XML file, some lists contains the following line (the tag doesn't matter actually) : <tag>0</tag>
In Config_XML.pm, line 171
returnundefunless$values;
in this case $values contains "0", which is false, thus the parsing ends prematurely and the list is not created.
The others lists in the family are OK.
The text was updated successfully, but these errors were encountered:
Version
6.2.56
Installation method
source package
Expected behavior
The list should be created
Actual behavior
The list is not created
Additional information
When a XML file used for list creation contains a "false" value (any value that evaluate as false in boolean context), the list is not created.
In the logs, we see the following error :
sympa[15053]: err main::#764 > main::instantiate#1325 > Sympa::Spindle::spin#95 > Sympa::Request::Handler::create_automatic_list::_twist#68 Error in representation data with these xml data
In our family XML file, some lists contains the following line (the tag doesn't matter actually) :
<tag>0</tag>
In Config_XML.pm, line 171
in this case $values contains "0", which is false, thus the parsing ends prematurely and the list is not created.
The others lists in the family are OK.
The text was updated successfully, but these errors were encountered: