Postponed (maintainer needs more info)
Project:
Conflict
Version:
8.x-2.0-alpha3
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Dec 2022 at 07:34 UTC
Updated:
10 Feb 2023 at 10:23 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
hchonovHow is the conflict module supposed to prevent this normal Drupal behavior?
Comment #3
thi3rry commentedI can confirm the issue on drupal 9.5.0.
The NodeDeleteForm extends the ContentEntityDeleteForm that implements EntityFormInterface, but in fact the NodeDeleteForm is here to delete the node or a translation of the node.
There is currently a work in progress on this : https://www.drupal.org/node/2491057
I don't know where the conflict module conflict with that drupal behavior.
We are using the attached patch to restore the drupal core behavior by removing the conflict_prepare_entity_form() on ContentEntityDeleteForm instance.
Comment #4
akalam commentedI can confirm the issue on Drupal 9.4.x, the issue is indeed related with ContentEntityDeleteForm is being responsible of deleting the entity. Skiping the alter for delete forms as in #3 seems like a solution and fixed the issue for me.