php - twig urlFor function -
when i've tried link anchor this:
<a href="{{ urlfor('posts.show', {'postid': post.id}) }}">{{ post.title }}</a>
i had fatal error:
class 'twig_simplefunction' not found
but works perfect when remove link in anchor. problem?
the "twig_simplefunction"
introduced in version between >1.11 , <=1.15, not in 1.x (as mentioned in documentation). that's wrong information documentation.
please try install version 1.15 example.
this issue reported here.
Comments
Post a Comment