mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 13:03:46 +00:00
[advancedcontentfilter] Fix notice messages
This commit is contained in:
parent
04ddb284da
commit
d014fa3e28
1 changed files with 2 additions and 2 deletions
|
@ -170,7 +170,7 @@ function advancedcontentfilter_module() {}
|
||||||
|
|
||||||
function advancedcontentfilter_init(App $a)
|
function advancedcontentfilter_init(App $a)
|
||||||
{
|
{
|
||||||
if ($a->argv[1] == 'api') {
|
if ($a->argc > 1 && $a->argv[1] == 'api') {
|
||||||
$slim = new \Slim\App();
|
$slim = new \Slim\App();
|
||||||
|
|
||||||
require __DIR__ . '/src/middlewares.php';
|
require __DIR__ . '/src/middlewares.php';
|
||||||
|
@ -188,7 +188,7 @@ function advancedcontentfilter_content(App $a)
|
||||||
return Login::form('/' . implode('/', $a->argv));
|
return Login::form('/' . implode('/', $a->argv));
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($a->argc > 0 && $a->argv[1] == 'help') {
|
if ($a->argc > 1 && $a->argv[1] == 'help') {
|
||||||
$lang = $a->user['language'];
|
$lang = $a->user['language'];
|
||||||
|
|
||||||
$default_dir = 'addon/advancedcontentfilter/doc/';
|
$default_dir = 'addon/advancedcontentfilter/doc/';
|
||||||
|
|
Loading…
Reference in a new issue