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