0

When applying the Twig filter "localizednumber", the following error is thrown:

Unknown "localizednumber" filter in MyBundle:Home:home.html.twig at line 558.

I have installed Twig Extensions as well as PHP Intl.

What could be the issue here?

xfscrypt
  • 16
  • 5
  • 28
  • 59
  • Possible duplicate of [How to install the Intl extension for Twig](http://stackoverflow.com/questions/25948853/how-to-install-the-intl-extension-for-twig) – A.L Apr 19 '16 at 15:11
  • @A.L adding twig intl to the services.yml did the trick – xfscrypt Apr 19 '16 at 15:26

1 Answers1

3

Did you declare the Intl Extension in your services?

If not, add this:

<service id="twig.extension.intl"
         class="Twig_Extensions_Extension_Intl">
    <tag name="twig.extension" />
</service>

in your app/config/services.xml.

Terenoth
  • 2,458
  • 1
  • 14
  • 21