mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
fix PHP warning : array_diff_key(): Argument #2 is not an array on line 281
This commit is contained in:
parent
500e212048
commit
17a735634c
@ -278,7 +278,7 @@ class calendar_uilist extends calendar_ui
|
||||
if (!$params['csv_export'])
|
||||
{
|
||||
Api\Cache::setSession('calendar', 'calendar_list',
|
||||
array_diff_key ($params, array_flip('rows', 'actions', 'action_links', 'placeholder_actions')));
|
||||
array_diff_key ($params, array_flip(array('rows', 'actions', 'action_links', 'placeholder_actions'))));
|
||||
}
|
||||
// do we need to query custom fields and which
|
||||
// Check stored preference if selectcols isn't available (ie: first call)
|
||||
|
Loading…
Reference in New Issue
Block a user