Merge pull request #6128 from owncloud/fix-6126-master

Also merge autoconfig variables into $_REQUEST.
This commit is contained in:
Thomas Müller 2013-11-29 11:22:44 -08:00
commit 338a55e36c
1 changed files with 1 additions and 0 deletions

View File

@ -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']);