X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=index.php;h=fdb15fdd884cbe4a0c9080374c571fe40df7e39e;hb=c5c9fda93cc7dd49fea056df212683c1d85b0b1a;hp=dd884a976ef3036237b3687047d8f13aa79f7605;hpb=2bfd9851d30b56821e042c6882db84ec62fd8a2a;p=friendica.git diff --git a/index.php b/index.php index dd884a976e..fdb15fdd88 100644 --- a/index.php +++ b/index.php @@ -21,6 +21,8 @@ use Dice\Dice; +$start_time = microtime(true); + if (!file_exists(__DIR__ . '/vendor/autoload.php')) { die('Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.'); } @@ -39,5 +41,6 @@ $a->runFrontend( $dice->create(\Friendica\App\Router::class), $dice->create(\Friendica\Core\PConfig\IPConfig::class), $dice->create(\Friendica\Security\Authentication::class), - $dice->create(\Friendica\App\Page::class) + $dice->create(\Friendica\App\Page::class), + $start_time );