Fixed: Array access for $config, which is already object create in bootstrap.php

This commit is contained in:
Josef Nevoral 2014-02-04 23:04:49 +07:00
parent 956862bb0f
commit c003574f77

View file

@ -81,6 +81,11 @@ if ($installOK && strtoupper($_SERVER['REQUEST_METHOD']) == 'POST') {
*/
require_once(PHPCI_DIR . 'vendor/autoload.php');
/**
* Temporary save phpci URL for redirect after install ($config is replaced in bootstrap.php)
*/
$phpciUrl = $config['phpci']['url'];
/**
* Write config file:
*/
@ -139,7 +144,7 @@ if ($installOK && strtoupper($_SERVER['REQUEST_METHOD']) == 'POST') {
$store->save($user);
}
$formAction = rtrim( $config['phpci']['url'], '/' ) . '/session/login';
$formAction = rtrim( $phpciUrl, '/' ) . '/session/login';
}
}