We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey Phalcon Team,
I am using the Volt filter escape_attr.
escape_attr
Simple example:
<meta charset="{{ charset | escape_attr }}"/>
I get the following error message:
Call to undefined method Phalcon\Html\Escaper::attr()
In the file Mvc/View/Engine/Volt/Compiler.zep on the line 2519 I find the following code:
/** * "escape_attr" filter uses the escaper component to escape HTML * attributes */ if name == "escape_attr" { return "$this->escaper->attr(" . arguments . ")"; }
In the Phalcon version 4.2.x I find in the same file Mvc/View/Engine/Volt/Compiler.zep this code on line 2397:
/** * "escape_attr" filter uses the escaper component to escape HTML * attributes */ if name == "escape_attr" { return "$this->escaper->escapeHtmlAttr(" . arguments . ")"; }
Please can you change this bug?
Thank you very much and please keep it up. You are a great team.
Details
v5.0.0beta1
8.0.14
The text was updated successfully, but these errors were encountered:
@phptux Thank you for reporting this. There is a PR ready, once it gets merged it will be in Beta 2 (releasing probably tonight or tomorrow).
Sorry, something went wrong.
This has been resolved in #15854
niden
No branches or pull requests
Hey Phalcon Team,
I am using the Volt filter
escape_attr
.Simple example:
I get the following error message:
In the file Mvc/View/Engine/Volt/Compiler.zep on the line 2519 I find the following code:
In the Phalcon version 4.2.x I find in the same file Mvc/View/Engine/Volt/Compiler.zep this code on line 2397:
Please can you change this bug?
Thank you very much and please keep it up. You are a great team.
Details
v5.0.0beta1
)8.0.14
)The text was updated successfully, but these errors were encountered: