2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2010-12-09 08:08:59 +01:00
|
|
|
/**
|
2017-11-16 19:05:41 +01:00
|
|
|
* @file index.php
|
2011-11-12 13:21:14 +01:00
|
|
|
* Friendica
|
2010-12-09 08:08:59 +01:00
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2017-05-03 04:42:29 +02:00
|
|
|
require_once 'boot.php';
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2016-07-02 08:54:57 +02:00
|
|
|
// We assume that the index.php is called by a frontend process
|
2018-10-22 04:24:47 +02:00
|
|
|
// The value is set to "true" by default in App
|
2018-10-09 19:58:58 +02:00
|
|
|
$a = new App(__DIR__, false);
|
2016-07-02 08:54:57 +02:00
|
|
|
|
2018-10-22 04:24:47 +02:00
|
|
|
$a->runFrontend();
|