Filemanager: Fix "[] operator not supported for strings"

caused by e7e9c6f
This commit is contained in:
nathan 2023-06-08 13:37:38 -06:00
parent 80bf6c2635
commit 4d78bdf767

View File

@ -1020,6 +1020,10 @@ class filemanager_ui
{
// Query the requested path, in case it's nested
$query['col_filter']['path'][] = $query['path'];
if(!is_array($query['col_filter']['dir']))
{
$query['col_filter']['dir'] = $query['col_filter']['dir'] ? [$query['col_filter']['dir']] : [];
}
foreach($query['col_filter']['path'] as $filter_path)
{
$query['col_filter']['dir'][] = Vfs::is_dir($filter_path) ? $filter_path : Vfs::dirname($filter_path);