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
Cause:
"htmlspecialchars() expects parameter 1 to be string, array given" into Zend/View/Abstract.php line 905
Solution: ` if (in_array($this->_escape, array('htmlspecialchars', 'htmlentities'))) { return call_user_func($this->_escape, "{$var}", ENT_COMPAT, $this->_encoding); }
if (1 == func_num_args()) { return call_user_func($this->_escape, "{$var}"); }
`
The text was updated successfully, but these errors were encountered:
If you're making a PR feel free to skip out on creating an issue, this is only a small repo so there's no need for both
Sorry, something went wrong.
No branches or pull requests
Cause:
Solution:
`
if (in_array($this->_escape, array('htmlspecialchars', 'htmlentities'))) {
return call_user_func($this->_escape, "{$var}", ENT_COMPAT, $this->_encoding);
}
`
The text was updated successfully, but these errors were encountered: