8000 [Form] Missing Data Handling (checkbox edge cases) by filiplikavcan · Pull Request #45081 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] Missing Data Handling (checkbox edge cases) #45081

New issue

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

Open
wants to merge 13 commits into
base: 7.4
Choose a base branch
from
Prev Previous commit
Next Next commit
CS
  • Loading branch information
filiplikavcan committed Oct 4, 2022
commit 591b4b979ccf15e5dc84ac334f2d87d34d95c4d8
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ public function handleRequest(FormInterface $form, mixed $request = null)

if ($request->query->has($name)) {
$data = $request->query->all()[$name];
}
else {
} else {
$data = $missingData;
}

Expand Down
0