diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php
index da435f550d1..aa7fa3280fd 100644
--- a/htdocs/core/class/commonobject.class.php
+++ b/htdocs/core/class/commonobject.class.php
@@ -7000,12 +7000,12 @@ abstract class CommonObject
$out = $form->multiselectarray($keyprefix.$key.$keysuffix, (empty($param['options']) ?null:$param['options']), $value_arr, '', 0, '', 0, '100%');
} elseif ($type == 'radio') {
$out = '';
- foreach ($param['options'] as $keyopt => $val) {
+ foreach ($param['options'] as $keyopt => $val2) {
$out .= ''.$val.'
';
+ $out .= '/>
';
}
} elseif ($type == 'chkbxlst') {
if (is_array($value)) {