mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +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'));
|
$extra = array('**NULL**' => lang('Users choice'));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if ($extra) $values = array_merge($extra,$values);
|
if ($extra) $values = $extra + $values;
|
||||||
|
|
||||||
$select = $html->select($GLOBALS['type'].'['.$name.']',$default,$values,true);
|
$select = $html->select($GLOBALS['type'].'['.$name.']',$default,$values,true);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user