X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=c94675a59ae65a887fe181c1350f714555d3e8d4;hb=d2dc61c246fcbb896f33f23698426893148b2f65;hp=d3d2e42ae6a7c8e088be411c896e644764d8c816;hpb=c12075a00518ae224c826d3e9373001b243f1839;p=friendica.git diff --git a/index.php b/index.php index d3d2e42ae6..c94675a59a 100644 --- a/index.php +++ b/index.php @@ -20,7 +20,9 @@ use Friendica\Core\Config; require_once 'boot.php'; require_once 'object/BaseObject.php'; -$a = new App(__DIR__); +if (empty($a)) { + $a = new App(__DIR__); +} BaseObject::set_app($a); // We assume that the index.php is called by a frontend process @@ -51,7 +53,7 @@ if (!$install) { require_once "include/dba.php"; if (!$install) { - $db = new dba($db_host, $db_user, $db_pass, $db_data, $install); + dba::connect($db_host, $db_user, $db_pass, $db_data, $install); unset($db_host, $db_user, $db_pass, $db_data); /** @@ -196,7 +198,7 @@ if ($install && $a->module!="view") { $a->module = 'maintenance'; } else { check_url($a); - check_db(); + check_db(false); check_plugins($a); }