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
Mapper->load() calls stringyfy() passing the filter
on line 225 of db/sql/mapper.php
if (is_array($filter) )
doesn't check if $filter is an empty array. In that case the function produces an error trying to access $filter[0]
I suggest to change with
if (is_array($filter) && count($filter)>0)
The text was updated successfully, but these errors were encountered:
You should pass null, if the filter is otherwise empty.
null
Because that's what's used if you specify nothing at all in the parens.
Sorry, something went wrong.
yes, off course
I just wonder if it's enought clear from the documentation
I think an empty array should be allowed as well to specify that no filter have to be applied, just as passing null or an empty string.
f3-factory/fatfree-core@27d9279
No branches or pull requests
Mapper->load() calls stringyfy() passing the filter
on line 225 of db/sql/mapper.php
if (is_array($filter) )
doesn't check if $filter is an empty array. In that case the function produces an error trying to access $filter[0]
I suggest to change with
if (is_array($filter) && count($filter)>0)
The text was updated successfully, but these errors were encountered: