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:
Thorsten Heymann 2013-11-05 21:59:38 +01:00
parent 010b5ebe6d
commit 217c29cac5

View file

@ -1,6 +1,6 @@
<?php
require_once(dirname(__FILE__) . '/../vars.php');
require_once(dirname(__FILE__) . '/../bootstrap.php');
$installStage = 'start';
$formAction = '';