Fixed bug in install php.
install.php requires bootstrap.php instead of vars.php because otherwise `$config` won't be set in vars.php. This fixes: Fatal error: Call to a member function get() on a non-object in /var/www/vars.php on line 11
This commit is contained in:
parent
010b5ebe6d
commit
217c29cac5
1 changed files with 1 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
require_once(dirname(__FILE__) . '/../vars.php');
|
||||
require_once(dirname(__FILE__) . '/../bootstrap.php');
|
||||
|
||||
$installStage = 'start';
|
||||
$formAction = '';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue