mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
fix PHP 8.0 TypeError: uasort(): Argument #1 ($array) must be of type array, null given
This commit is contained in:
parent
108d077ccd
commit
de7f4329ff
@ -3067,7 +3067,7 @@ class Mail
|
||||
$folders = $this->icServer->getMailboxes($path, $_search, true);
|
||||
}
|
||||
|
||||
uasort($folders,array($this,'sortByMailbox'));//ksort($folders);
|
||||
if (is_array($folders)) uasort($folders, array($this,'sortByMailbox'));
|
||||
}
|
||||
elseif(!$_nodePath) // all
|
||||
{
|
||||
@ -3088,7 +3088,7 @@ class Mail
|
||||
if (self::$debugTimes) $starttime = microtime (true);
|
||||
// Merge of all auto folders and specialusefolders
|
||||
$autoFoldersTmp = array_unique((array_merge(self::$autoFolders, array_values(self::$specialUseFolders))));
|
||||
uasort($folders,array($this,'sortByMailbox'));//ksort($folders);
|
||||
if (is_array($folders)) uasort($folders,array($this,'sortByMailbox'));//ksort($folders);
|
||||
$tmpFolders = $folders;
|
||||
$inboxFolderObject=$inboxSubFolderObjects=$autoFolderObjects=$typeFolderObject=$mySpecialUseFolders=array();
|
||||
$googleMailFolderObject=$googleAutoFolderObjects=$googleSubFolderObjects=array();
|
||||
|
Loading…
Reference in New Issue
Block a user