Skip to content

Commit 12ab95f

Browse files
author
Florian Schaal
committed
fixed typos in install.php
1 parent a75c816 commit 12ab95f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

install/install.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@
260260

261261
//* Check for Dovecot and Courier
262262
if(!$conf['dovecot']['installed'] && !$conf['courier']['installed']) {
263-
$conf['dovecot']['installed'] = @($conf['dovecot']['installed']) ? false : $inst->force_configure_app('Dovecot');
264-
$conf['courier']['installed'] = @($conf['couier']['installed']) ? false : $inst->force_configure_app('Courier');
263+
$conf['dovecot']['installed'] = $inst->force_configure_app('Dovecot');
264+
$conf['courier']['installed'] = $inst->force_configure_app('Courier');
265265
}
266266
//* Configure Mailserver - Dovecot or Courier
267267
if($conf['dovecot']['installed'] && $conf['courier']['installed']) {
@@ -591,8 +591,8 @@
591591

592592
//* Check for Dovecot and Courier
593593
if(!$conf['dovecot']['installed'] && !$conf['courier']['installed']) {
594-
$conf['dovecot']['installed'] = @($conf['dovecot']['installed']) ? false : $inst->force_configure_app('Dovecot');
595-
$conf['courier']['installed'] = @($conf['couier']['installed']) ? false : $inst->force_configure_app('Courier');
594+
$conf['dovecot']['installed'] = $inst->force_configure_app('Dovecot');
595+
$conf['courier']['installed'] = $inst->force_configure_app('Courier');
596596
}
597597
//* Configure Mailserver - Dovecot or Courier
598598
if($conf['dovecot']['installed'] && $conf['courier']['installed']) {

0 commit comments

Comments
 (0)