@@ -773,8 +773,8 @@ public function Logger(): \MailSo\Log\Logger
773773 $ sLogFileFullPath = \APP_PRIVATE_DATA . 'logs/ ' . $ this ->compileLogFileName ($ sLogFileName );
774774 $ sLogFileDir = \dirname ($ sLogFileFullPath );
775775
776- if (!is_dir ($ sLogFileDir )) {
777- mkdir ($ sLogFileDir , 0755 , true );
776+ if (!\ is_dir ($ sLogFileDir )) {
777+ \ mkdir ($ sLogFileDir , 0755 , true );
778778 }
779779
780780 $ oDriver = new \MailSo \Log \Drivers \File ($ sLogFileFullPath );
@@ -1009,7 +1009,6 @@ public function AppDataSystem(bool $bAdmin = false): array
10091009 'useImapThread ' => (bool )$ oConfig ->Get ('labs ' , 'use_imap_thread ' , false ),
10101010 'useImapSubscribe ' => (bool )$ oConfig ->Get ('labs ' , 'use_imap_list_subscribe ' , true ),
10111011 'allowAppendMessage ' => (bool )$ oConfig ->Get ('labs ' , 'allow_message_append ' , false ),
1012- 'materialDesign ' => (bool )$ oConfig ->Get ('labs ' , 'use_material_design ' , true ),
10131012 'folderSpecLimit ' => (int )$ oConfig ->Get ('labs ' , 'folders_spec_limit ' , 50 ),
10141013 'faviconStatus ' => (bool )$ oConfig ->Get ('labs ' , 'favicon_status ' , true ),
10151014 'listPermanentFiltered ' => '' !== \trim (Api::Config ()->Get ('labs ' , 'imap_message_list_permanent_filter ' , '' )),
0 commit comments