diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-11-29 16:24:48 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-11-29 16:24:48 +0100 |
commit | 2ec085b51fc5f3652fc4381db5944e7b035eaf0a (patch) | |
tree | e34b1ff7dd9ca101bc754776402c48fbda1f728e | |
parent | 1dc931b778a22a0105065f2122bb6de4dd7361d6 (diff) | |
download | nextcloud-server-2ec085b51fc5f3652fc4381db5944e7b035eaf0a.tar.gz nextcloud-server-2ec085b51fc5f3652fc4381db5944e7b035eaf0a.zip |
Also merge autoconfig variables into $_REQUEST.
-rw-r--r-- | core/setup.php | 1 |
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']); |