687eef90f7
- Add killme() in controllers instead of relying on index.php - Fix formatting
13 lines
184 B
PHP
13 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();
|
|
}
|
|
}
|