1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 12:21:45 +02:00

Radio button fix and support for VIEWPORT in the admin area. More admin-menu fixes.

This commit is contained in:
Cameron
2012-11-27 02:34:02 -08:00
parent d2660e96d7
commit b5a8963f00
4 changed files with 39 additions and 17 deletions

View File

@@ -851,7 +851,7 @@ class e_form
{
$options = $this->format_options('radio', $name, $options);
$options['checked'] = $checked; //comes as separate argument just for convenience
$options['class'] = 'inline';
// $options['class'] = 'inline';
return "<input type='radio' name='{$name}' value='".$value."'".$this->get_attributes($options, $name, $value)." />";
}
@@ -899,7 +899,7 @@ class e_form
function label($text, $name = '', $value = '')
{
$for_id = $this->_format_id('', $name, $value, 'for');
return "<label$for_id class='e-tip inline'>{$text}</label>";
return "<label$for_id class='e-tip '>{$text}</label>";
}
function help($text)
@@ -1354,7 +1354,7 @@ class e_form
break;
case 'radio':
$def_options['class'] = 'radio';
$def_options['class'] = 'radio inline';
unset($def_options['size'], $def_options['selected']);
break;