As designed \XF\Admin\Controller\AbstractField::actionDelete doesn't use new XF\ControllerPlugin\Delete

Jake B.

Well-known member
Affected version
2.1.x
Currently it's still expecting a template to be created rather than using the controller plugin that was created in 2.1
 
This was intentional.

The delete plugin only takes care of the very simple and straight forward delete cases. There may be other areas that aren't covered by the plugin. Notably with custom fields (and prefixes) we couldn't guarantee that all implementations would be identical and not doing custom things in their controller code and templates so we decided to bypass the delete plugin here.
 
Top Bottom