Also merge autoconfig variables into $_REQUEST.

remotes/origin/stable6
Andreas Fischer 11 years ago
parent 1dc931b778
commit 2ec085b51f
  1. 1
      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); OC_Log::write('core', 'Autoconfig file found, setting up owncloud...', OC_Log::INFO);
include $autosetup_file; include $autosetup_file;
$_POST = array_merge ($_POST, $AUTOCONFIG); $_POST = array_merge ($_POST, $AUTOCONFIG);
$_REQUEST = array_merge ($_REQUEST, $AUTOCONFIG);
} }
$dbIsSet = isset($_POST['dbtype']); $dbIsSet = isset($_POST['dbtype']);

Loading…
Cancel
Save