From 12ab95f8be7c788e30c54f1e0b5f4c1b8eebe80f Mon Sep 17 00:00:00 2001 From: Florian Schaal Date: Wed, 29 Apr 2015 07:37:04 +0200 Subject: [PATCH] fixed typos in install.php --- install/install.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install/install.php b/install/install.php index 3a2de4a10..bdc33dab8 100644 --- a/install/install.php +++ b/install/install.php @@ -260,8 +260,8 @@ if($install_mode == 'standard') { //* Check for Dovecot and Courier if(!$conf['dovecot']['installed'] && !$conf['courier']['installed']) { - $conf['dovecot']['installed'] = @($conf['dovecot']['installed']) ? false : $inst->force_configure_app('Dovecot'); - $conf['courier']['installed'] = @($conf['couier']['installed']) ? false : $inst->force_configure_app('Courier'); + $conf['dovecot']['installed'] = $inst->force_configure_app('Dovecot'); + $conf['courier']['installed'] = $inst->force_configure_app('Courier'); } //* Configure Mailserver - Dovecot or Courier if($conf['dovecot']['installed'] && $conf['courier']['installed']) { @@ -591,8 +591,8 @@ if($install_mode == 'standard') { //* Check for Dovecot and Courier if(!$conf['dovecot']['installed'] && !$conf['courier']['installed']) { - $conf['dovecot']['installed'] = @($conf['dovecot']['installed']) ? false : $inst->force_configure_app('Dovecot'); - $conf['courier']['installed'] = @($conf['couier']['installed']) ? false : $inst->force_configure_app('Courier'); + $conf['dovecot']['installed'] = $inst->force_configure_app('Dovecot'); + $conf['courier']['installed'] = $inst->force_configure_app('Courier'); } //* Configure Mailserver - Dovecot or Courier if($conf['dovecot']['installed'] && $conf['courier']['installed']) { -- GitLab