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 you save a content or media item with a null/blank value the XML contains a blank item
<test>
<value></value>
</text>
however, if you export it (via the dashboard) it gets wrapped in cdata
<test>
<value><![CDATA[]]></value>
</test>
this is because when you save the content, Umbraco tells you the value is null when we export it, Umbraco says its blank, and we treat these slightly differently.
The text was updated successfully, but these errors were encountered:
When you save a content or media item with a null/blank value the XML contains a blank item
however, if you export it (via the dashboard) it gets wrapped in cdata
this is because when you save the content, Umbraco tells you the value is null when we export it, Umbraco says its blank, and we treat these slightly differently.
The text was updated successfully, but these errors were encountered: