More useful "auth_logging_format" setting

This commit is contained in:
RainLoop Team 2015-05-18 21:23:48 +04:00
parent 0035505659
commit 9cfb6a9452
5 changed files with 26 additions and 10 deletions

View file

@ -190,8 +190,15 @@ class FolderCollection extends \MailSo\Base\Collection
if (!isset($aSortedByLenImapFolders[$sNonExistenFolderFullNameRaw]))
{
$aAddedFolders[$sNonExistenFolderFullNameRaw] =
Folder::NewNonExistenInstance($sNonExistenFolderFullNameRaw, $sDelimiter);
try
{
$aAddedFolders[$sNonExistenFolderFullNameRaw] =
Folder::NewNonExistenInstance($sNonExistenFolderFullNameRaw, $sDelimiter);
}
catch (\Exception $oExc)
{
unset($oExc);
}
}
}
}