1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-07-31 10:04:20 +03:00

fix formatting

This commit is contained in:
David Goodwin
2019-09-15 11:42:21 +01:00
parent f8713651cc
commit f7c7e35b34
5 changed files with 5 additions and 6 deletions

View File

@ -661,7 +661,7 @@ class MailboxHandler extends PFAHandler {
return true; return true;
} }
if(!function_exists('imap_open')) { if (!function_exists('imap_open')) {
trigger_error('imap_open function not present; cannot create_mailbox_subdirs'); trigger_error('imap_open function not present; cannot create_mailbox_subdirs');
return false; return false;
} }

View File

@ -409,8 +409,7 @@ require_once(dirname(__FILE__) . '/../common.php');
$dispatcher = new PostfixAdmin($argv); $dispatcher = new PostfixAdmin($argv);
try { try {
$retval = $dispatcher->dispatch(); $retval = $dispatcher->dispatch();
} } catch (Exception $e) {
catch(Exception $e) {
$dispatcher->stderr("Execution Exception: " . $e->getMessage()); $dispatcher->stderr("Execution Exception: " . $e->getMessage());
$retval = 1; $retval = 1;
} }