mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
"fixed (new multiple) selection preference: array_merge caused a renumbering of the numeric indices, which messed up the prefs"
This commit is contained in:
parent
a840dd6d45
commit
e3a1390b6c
@ -532,7 +532,7 @@
|
||||
$extra = array('**NULL**' => lang('Users choice'));
|
||||
break;
|
||||
}
|
||||
if ($extra) $values = array_merge($extra,$values);
|
||||
if ($extra) $values = $extra + $values;
|
||||
|
||||
$select = $html->select($GLOBALS['type'].'['.$name.']',$default,$values,true);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user