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