diff --git a/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceList.php b/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceList.php index 5059fb2454..261a96a663 100644 --- a/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceList.php +++ b/src/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceList.php @@ -283,7 +283,7 @@ class ChoiceList implements ChoiceListInterface foreach ($this->choices as $i => $choice) { foreach ($choices as $j => $givenChoice) { - if ($choice === $this->fixChoice($givenChoice)) { + if ($choice === $givenChoice) { $indices[] = $i; unset($choices[$j]);