Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2022-07-31 13:41:05 +0300
committerAleksander Machniak <alec@alec.pl>2022-07-31 13:41:05 +0300
commit01e42cfe5779cba1ac397f7bfeed8b53a6fc6418 (patch)
tree1bc0995c9c7d1d62b681dd6a867b5d27347d7beb /installer
parent5c4e18820e54f781bded2464be6fe50984b5bcb2 (diff)
Fix bug where config creation in Installer did ignore options in the form (#8634)
Diffstat (limited to 'installer')
-rw-r--r--installer/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/index.php b/installer/index.php
index c44656242..36eea54fa 100644
--- a/installer/index.php
+++ b/installer/index.php
@@ -71,8 +71,8 @@ if (isset($_GET['_getconfig'])) {
if (
$RCI->configured
- && ($RCI->getprop('enable_installer') || !empty($_SESSION['allowinstaller'])) &&
- !empty($_GET['_mergeconfig'])
+ && !empty($_GET['_mergeconfig'])
+ && ($RCI->getprop('enable_installer') || !empty($_SESSION['allowinstaller']))
) {
$filename = 'config.inc.php';