forked from extern/egroupware
fix PHP 8.0 "TypeError: count(): Argument #1 ($value) must be of type Countable|array, string given" when creating a new directory
This commit is contained in:
parent
da6a16e62d
commit
a94a46578f
@ -684,7 +684,7 @@ class filemanager_ui
|
|||||||
*/
|
*/
|
||||||
static public function action($action,$selected,$dir=null,&$errs=null,&$files=null,&$dirs=null)
|
static public function action($action,$selected,$dir=null,&$errs=null,&$files=null,&$dirs=null)
|
||||||
{
|
{
|
||||||
if (!count($selected))
|
if (!count((array)$selected))
|
||||||
{
|
{
|
||||||
return lang('You need to select some files first!');
|
return lang('You need to select some files first!');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user