forked from extern/egroupware
adding a "None" to resource selection in calendar, to allow to remove all resources from view
This commit is contained in:
parent
6623a2f7d7
commit
4e3732f526
@ -647,10 +647,10 @@ class resources_ui
|
|||||||
$selectbox = html::select(
|
$selectbox = html::select(
|
||||||
'owner',
|
'owner',
|
||||||
$selected,
|
$selected,
|
||||||
array_merge($resources,$res_cats),
|
$options=array_merge(array('r0' => lang('None')),$resources,$res_cats),
|
||||||
$no_lang=true,
|
true, // no lang
|
||||||
$options=' style="width: 100%;" id="uical_select_resource"',
|
' style="width: 100%;" id="uical_select_resource"',
|
||||||
$multiple=4,
|
min(4, count($options)), // multiple
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
return array(
|
return array(
|
||||||
|
Loading…
Reference in New Issue
Block a user