summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2013-11-29 16:24:48 +0100
committerAndreas Fischer <bantu@owncloud.com>2013-11-29 16:24:48 +0100
commit2ec085b51fc5f3652fc4381db5944e7b035eaf0a (patch)
treee34b1ff7dd9ca101bc754776402c48fbda1f728e
parent1dc931b778a22a0105065f2122bb6de4dd7361d6 (diff)
downloadnextcloud-server-2ec085b51fc5f3652fc4381db5944e7b035eaf0a.tar.gz
nextcloud-server-2ec085b51fc5f3652fc4381db5944e7b035eaf0a.zip
Also merge autoconfig variables into $_REQUEST.
-rw-r--r--core/setup.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/setup.php b/core/setup.php
index 4026a748453..781d6e572af 100644
--- a/core/setup.php
+++ b/core/setup.php
@@ -6,6 +6,7 @@ if( file_exists( $autosetup_file )) {
OC_Log::write('core', 'Autoconfig file found, setting up owncloud...', OC_Log::INFO);
include $autosetup_file;
$_POST = array_merge ($_POST, $AUTOCONFIG);
+ $_REQUEST = array_merge ($_REQUEST, $AUTOCONFIG);
}
$dbIsSet = isset($_POST['dbtype']);