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
// will be stored (eg $node->hasProperty())$node->setProperty("withDefault", null);
// will not be stored (eg $node->hasProperty())$node->setProperty("withoutDefault", null);
// will also not be stored (eg $node->hasProperty())$node->setProperty("undeclaredProperty", null);
// will be stored (eg $node->hasProperty())$node->setProperty("anotherUndeclaredProperty", "hi");
$node->setProperty("anotherUndeclaredProperty", null);
About the old CR. Neos 8.3
If you have a node with those properties defined:
the cause for this behavior is this guard:
neos-development-collection/Neos.ContentRepository/Classes/Domain/Model/Node.php
Lines 872 to 874 in 1b744c8
we should also make sure that $node->hasProperty in that case.
But i dont think its worth bugfixing this minor inconsistency and this might never be a real problem.
We just wondered what was going on @Sebobo
The text was updated successfully, but these errors were encountered: