Home » Database » DB_Table » Bug #8249
in grouped Radio-Elements
Details
| Request #8249 | in grouped Radio-Elements |
|---|---|
| Submitted | 2006-07-19 16:01 UTC |
| From | arne dot bippes at brandao dot de |
| Assigned | wiesemann |
| Status | Closed |
| Package | DB_Table |
| PHP Version | Irrelevant |
| OS | irrelevant |
| Roadmaps | (Not assigned) |
Comments
[2006-07-19 16:01 UTC] arne dot bippes at brandao dot de
Description:
------------
For radiobuttons the values are added as a group. The seperator is already added inside the label.
in function addElements() line 255 they are grouped with
$group =& $form->addGroup($element, $name, $label);
Since the seperator is not defined HTML_Quickform will add the default
Line 255 should be changed to:
$group =& $form->addGroup($element, $name, $label,'');
Line 465 could be:
$btnlabel . ($col['qf_radiosep'] ? $col['qf_radiosep'] : ' '),