ZF-12158: Escape radio labels in Zend_View_Helper_FormRadio
Description
A cannot disable escaping radio labels. I have found the reason, the $escape variable is not defined.
// Should the label be escaped?
if ($escape) {
$opt_label = $this->view->escape($opt_label);
}
Comments
Posted by Szurovecz János (szjani) on 2012-04-16T22:05:15.000+0000
I didn't see the extract() function call. It works. Sorry.