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
When checking if request has specified variable:
if ($this->missingOldAndModel($name) && !$request)
using negation operator gives wrong results if request has variable but it's value is for example 0 - which I believe is very common with radio input.
Changing it to:
if ($this->missingOldAndModel($name) && is_null($request))
solves this issue.
The text was updated successfully, but these errors were encountered:
Looks like it was missed when checkbox was fixed in #453.
Sorry, something went wrong.
LaravelCollective#650
0e4ccf8
I fixed #453 three years ago, for check-boxes, and did not have the time to test the radio-buttons. Well, here we are :-)
I just submitted a pull request.
Thanks for the ticket and have good coding.
No branches or pull requests
When checking if request has specified variable:
if ($this->missingOldAndModel($name) && !$request)
using negation operator gives wrong results if request has variable but it's value is for example 0 - which I believe is very common with radio input.
Changing it to:
if ($this->missingOldAndModel($name) && is_null($request))
solves this issue.
The text was updated successfully, but these errors were encountered: