- Affected version
- 2.0.1
The php cmd.php xf-addon:build-release command does not produced properly formed XML style properties.
consider the style property with the following free-form LESS/CSS;
This is outputted in style_properties.xml as:
This looks to be json dumped into XML, as there are unescaped & entities.
consider the style property with the following free-form LESS/CSS;
Less:
margin-top: 4px;
margin-right: 4px;
&:last-child
{
margin-right: 0;
}
This is outputted in style_properties.xml as:
XML:
<value>{
"extra": "margin-top: 4px;\nmargin-right: 4px;\n\n&:last-child\n{\n\tmargin-right: 0;\n}"
}</value>
This looks to be json dumped into XML, as there are unescaped & entities.