This error is due to logic in twig at: https://github.com/fabpot/Twig/blob/master/lib/Twig/Extension/Core.php#L1187
The |lower filter is only added to twig if the PHP mbstring extension is enabled.
mbstring is a non-default extension. This means it is not enabled by default. You must explicitly enable the module with the configure option.
http://www.php.net/manual/en/mbstring.installation.php
The fix for this bug is to enable mbstring.
This error is due to logic in twig at: https://github.com/fabpot/Twig/blob/master/lib/Twig/Extension/Core.php#L1187
The |lower filter is only added to twig if the PHP mbstring extension is enabled.
mbstring is a non-default extension. This means it is not enabled by default. You must explicitly enable the module with the configure option.
http://www.php.net/manual/en/mbstring.installation.php
The fix for this bug is to enable mbstring.