dir/mod/stats.php
Hypolite Petovan 687eef90f7 Fix upcoming killme() in index.php change
- Add killme() in controllers instead of relying on index.php
- Fix formatting
2017-08-01 21:33:50 -04:00

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();
}
}