diff --git a/src/Symfony/Component/Form/RadioField.php b/src/Symfony/Component/Form/RadioField.php index b1557e74fc..60469b7e5a 100644 --- a/src/Symfony/Component/Form/RadioField.php +++ b/src/Symfony/Component/Form/RadioField.php @@ -24,6 +24,6 @@ class RadioField extends ToggleField public function getName() { // TESTME - return $this->getParent() ? $this->getParent()->getName() : $this->getName(); + return $this->getParent() ? $this->getParent()->getName() : parent::getName(); } }