forked from extern/egroupware
Fix a small bug in html_form_select_begin
This commit is contained in:
parent
7991524018
commit
ed26d20be6
@ -78,10 +78,10 @@ function html_form_textarea ($name = NULL, $rows = NULL, $cols = NULL, $value =
|
|||||||
|
|
||||||
function html_form_select_begin ($name = NULL, $return = 0)
|
function html_form_select_begin ($name = NULL, $return = 0)
|
||||||
{
|
{
|
||||||
$test = ' ';
|
$text = ' ';
|
||||||
if ($name != NULL && $name)
|
if ($name != NULL && $name)
|
||||||
{
|
{
|
||||||
$text = 'name="'.$name.'" ';
|
$text .= 'name="'.$name.'" ';
|
||||||
}
|
}
|
||||||
$rstring = '<select'.$text.'>';
|
$rstring = '<select'.$text.'>';
|
||||||
return (eor ($rstring, $return));
|
return (eor ($rstring, $return));
|
||||||
|
Loading…
Reference in New Issue
Block a user