From 2ec085b51fc5f3652fc4381db5944e7b035eaf0a Mon Sep 17 00:00:00 2001
From: Andreas Fischer <bantu@owncloud.com>
Date: Fri, 29 Nov 2013 16:24:48 +0100
Subject: [PATCH] Also merge autoconfig variables into $_REQUEST.

---
 core/setup.php | 1 +
 1 file changed, 1 insertion(+)

diff --git a/core/setup.php b/core/setup.php
index 4026a74845..781d6e572a 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']);
-- 
GitLab