I\'m upgrading my project from Symfony 2.0.22 to 2.2.0 and review somes changes, but i\'m blocked on this :
I would like to render (like in Sf 2.0.X) a header with th
In Symfony >= 2.2.x you should embed your controller like this:
{{ render(controller('AcmeArticleBundle:Article:recentArticles', { 'max': 3 })) }}
Take a look at the documentation:
Creating and using Templates
UPGRADE-2.2