You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the update to symfony 2.7, twig started escaping CSS strings with a '#'. This breaks our website, which uses this to inject theme colors in the CSS.
Example:
{% set test = '#abc' %}
"{{ test }}"
Expected result (Symfony 2.6.7):
"#abc"
Result (Symfony 2.7):
"\23 abc"
The text was updated successfully, but these errors were encountered:
After the update to symfony 2.7, twig started escaping CSS strings with a '#'. This breaks our website, which uses this to inject theme colors in the CSS.
Example:
{% set test = '#abc' %}
"{{ test }}"
Expected result (Symfony 2.6.7):
"#abc"
Result (Symfony 2.7):
"\23 abc"
The text was updated successfully, but these errors were encountered: