| Q | A | ---------------- | ----- | Bug report? | yes | Feature request? | no | BC Break report? | yes | Symfony version | v3.2.4 After update to v3.2.4 the inheritance of templates from parent bundle does not work. Create a loop and the application crash. e.g. I have a bundle called AdminBundle, with ````php public function getParent() { return 'SonataAdminBundle'; } ```` and override some templates: `delete.html.twig:` ```jinja {% extends '@SonataAdmin/CRUD/delete.html.twig' %} ```` The above code works fine before the update, with: "version": "v3.2.1", but not with current version.