mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
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)
|
||||
{
|
||||
$test = ' ';
|
||||
$text = ' ';
|
||||
if ($name != NULL && $name)
|
||||
{
|
||||
$text = 'name="'.$name.'" ';
|
||||
$text .= 'name="'.$name.'" ';
|
||||
}
|
||||
$rstring = '<select'.$text.'>';
|
||||
return (eor ($rstring, $return));
|
||||
|
Loading…
Reference in New Issue
Block a user