I have the following code in my 'Default_Form_Registration' class (inside _init method):
$fullname = $this->addDisplayGroup(
array('firstname', 'lastname'),
'fullname');
$fullname->setLegend('Full Name');
My form is being displayed properly (elements inside the fieldset), however there is no legend being displayed. I have not changed the decorators at all, using default decorators.
What am I doing wrong?