Fix radio buttons for enum values.

SVN:trunk[1558]
This commit is contained in:
Denis Flaven
2011-09-06 12:47:42 +00:00
parent ab5849b3cd
commit 69368a39cb

View File

@@ -1627,7 +1627,7 @@ EOF
case 'radio_vertical':
$sHTMLValue = '';
$bVertical = ($sDisplayStyle != 'radio_horizontal');
$sHTMLValue = $oPage->GetRadioButtons($aAllowedValues, $value, $iId, "{$sFieldPrefix}{$sAttCode}{$sNameSuffix}", $bMandatory, $bVertical, $sValidationField);
$sHTMLValue = $oPage->GetRadioButtons($aAllowedValues, $value, $iId, "attr_{$sFieldPrefix}{$sAttCode}{$sNameSuffix}", $bMandatory, $bVertical, $sValidationField);
$aEventsList[] ='change';
break;