687eef90f7
- Add killme() in controllers instead of relying on index.php - Fix formatting
15 lines
188 B
PHP
15 lines
188 B
PHP
<?php
|
|
|
|
use Friendica\Directory\Rendering\View;
|
|
|
|
if (!function_exists('stats_content')) {
|
|
function stats_content(&$a)
|
|
{
|
|
$view = new View('stats');
|
|
$view->output();
|
|
|
|
killme();
|
|
}
|
|
}
|
|
|