8000 [Form] [Doctrine-bridge] Wrong value transformation raises exception by egeloen · Pull Request #3727 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Form] [Doctrine-bridge] Wrong value transformation raises exception #3727

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

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix reverseTransform with EntityChoiceList
  • Loading branch information
GeLoLabs committed Mar 29, 2012
commit 77821e0f304f3ad45caba7882b3c237bb30b1ca2
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function transform($array)
*/
public function reverseTransform($array)
{
if (null === $array) {
if (empty($array)) {
return array();
}

Expand Down
0