Fix warning about incorrect parameters to array_flip()

This commit is contained in:
nathangray 2017-04-25 15:53:50 -06:00
parent 21dfde5b96
commit cd63220eb1

View File

@ -814,7 +814,7 @@ class filemanager_ui
if (!$query['csv_export']) if (!$query['csv_export'])
{ {
Api\Cache::setSession('filemanager', 'index', Api\Cache::setSession('filemanager', 'index',
array_diff_key ($query, array_flip('rows','actions','action_links','placeholder_actions'))); array_diff_key ($query, array_flip(array('rows','actions','action_links','placeholder_actions'))));
} }
if(!$query['path']) $query['path'] = static::get_home_dir(); if(!$query['path']) $query['path'] = static::get_home_dir();