| 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
public function getParent()
{
return 'SonataAdminBundle';
}
and override some templates:
delete.html.twig:
{% extends '@SonataAdmin/CRUD/delete.html.twig' %}
The above code works fine before the update, with: "version": "v3.2.1", but not with current version.