dir/mod/help.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

14 lines
184 B
PHP

<?php
use Friendica\Directory\Rendering\View;
if (!function_exists('help_content')) {
function help_content(&$a)
{
$view = new View('help');
$view->output();
killme();
}
}