- Issue created by @samy_msa
TCA is causing entities to be save twice
Enable TCA and implement a simple hook_entity_presave for debugging.
function mymodule_node_presave(NodeInterface $node) {
dump('nid: ' . $node->id());
}
Create a new node. You'll see the hook is called twice.
See attached patch.
Active
3.0
Code