mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-04 10:24:26 +02:00
add a warning when an array is passed as the 'checked' value of html_radios
This commit is contained in:
2
NEWS
2
NEWS
@@ -1,3 +1,5 @@
|
||||
- added warning message when an array is passed as
|
||||
the "checked" value of html_radios (Monte)
|
||||
- fixed errormessage in _compile_smarty_ref() (messju)
|
||||
- updated docs for html_image "name" -> "file" (messju)
|
||||
- fixed bug with html_options-optgroups (Nichlas L<>fdahl, messju)
|
||||
|
@@ -35,32 +35,36 @@ function smarty_function_html_radios($params, &$smarty)
|
||||
$extra = '';
|
||||
|
||||
foreach($params as $_key => $_val) {
|
||||
switch($_key) {
|
||||
case 'name':
|
||||
case 'separator':
|
||||
case 'checked':
|
||||
$$_key = (string)$_val;
|
||||
break;
|
||||
switch($_key) {
|
||||
case 'name':
|
||||
case 'separator':
|
||||
case 'checked':
|
||||
if(is_array($_val)) {
|
||||
$smarty->trigger_error('the "checked"-attribute cannot be an array.', E_USER_WARNING);
|
||||
} else {
|
||||
$$_key = (string)$_val;
|
||||
}
|
||||
break;
|
||||
|
||||
case 'options':
|
||||
$$_key = (array)$_val;
|
||||
break;
|
||||
case 'options':
|
||||
$$_key = (array)$_val;
|
||||
break;
|
||||
|
||||
case 'values':
|
||||
case 'output':
|
||||
$$_key = array_values((array)$_val);
|
||||
break;
|
||||
case 'values':
|
||||
case 'output':
|
||||
$$_key = array_values((array)$_val);
|
||||
break;
|
||||
|
||||
case 'radios':
|
||||
$smarty->trigger_error('the use of the "radios"-attribute is deprecated. use "options" instead', E_USER_WARNING);
|
||||
$options = (array)$_val;
|
||||
break;
|
||||
case 'radios':
|
||||
$smarty->trigger_error('the use of the "radios"-attribute is deprecated. use "options" instead', E_USER_WARNING);
|
||||
$options = (array)$_val;
|
||||
break;
|
||||
|
||||
|
||||
default:
|
||||
$extra .= ' '.$_key.'="'.smarty_function_escape_special_chars((string)$_val).'"';
|
||||
break;
|
||||
}
|
||||
default:
|
||||
$extra .= ' '.$_key.'="'.smarty_function_escape_special_chars((string)$_val).'"';
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (!isset($options) && !isset($values))
|
||||
|
Reference in New Issue
Block a user