2015-12-24 11:20:37 +01:00
|
|
|
<?php
|
2017-08-02 03:33:50 +02:00
|
|
|
|
2015-12-24 11:20:37 +01:00
|
|
|
use Friendica\Directory\Rendering\View;
|
|
|
|
|
2017-08-02 03:33:50 +02:00
|
|
|
if (!function_exists('stats_content')) {
|
|
|
|
function stats_content(&$a)
|
|
|
|
{
|
|
|
|
$view = new View('stats');
|
|
|
|
$view->output();
|
|
|
|
|
|
|
|
killme();
|
|
|
|
}
|
2015-12-24 11:20:37 +01:00
|
|
|
}
|
|
|
|
|