PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Database » DB_Table » Bug #8249

  in grouped Radio-Elements

Details

Request #8249  in grouped Radio-Elements
Submitted2006-07-19 16:01 UTC
Fromarne dot bippes at brandao dot de
Assignedwiesemann
StatusClosed
PackageDB_Table
PHP VersionIrrelevant
OSirrelevant
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'] : ' '),