Replace Pager->ensureQueryParameter by Strings::ensureQueryParameter
[friendica.git/.git] / index.php
1 <?php
2 /**
3  * @file index.php
4  * Friendica
5  */
6
7 require __DIR__ . '/vendor/autoload.php';
8
9 // We assume that the index.php is called by a frontend process
10 // The value is set to "true" by default in App
11 $a = new Friendica\App(__DIR__, false);
12
13 $a->runFrontend();