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
I have this test here in my URL request
?relation%5Bid_roadmap%5D=test&relation%5Bid_roadmap_year%5D=NULL
$request->getVar('relation', FILTER_VALIDATE_INT);
does not do anything to the array but if i make it for each it works
$request->getVar('relation[id_roadmap]', FILTER_VALIDATE_INT); it validate correctly
I hope you fix even if the input request is an array pls.
The text was updated successfully, but these errors were encountered:
Maybe is the wanted result to not apply the filter on all the array ? please tell me so i can change my code..
Sorry, something went wrong.
4e52f32
No branches or pull requests
I have this test here in my URL request
?relation%5Bid_roadmap%5D=test&relation%5Bid_roadmap_year%5D=NULL
$request->getVar('relation', FILTER_VALIDATE_INT);
does not do anything to the array
but if i make it for each it works
$request->getVar('relation[id_roadmap]', FILTER_VALIDATE_INT);
it validate correctly
I hope you fix even if the input request is an array pls.
The text was updated successfully, but these errors were encountered: