mirror of
https://github.com/friendica/friendica
synced 2024-11-19 01:03:40 +00:00
Merge pull request #9370 from annando/notice
Fix notice "Undefined offset: 1"
This commit is contained in:
commit
24cbbd72a5
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ function network_init(App $a)
|
||||||
DI::page()['aside'] = '';
|
DI::page()['aside'] = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array($a->argv[1], ['person', 'organisation', 'news', 'community'])) {
|
if (!empty($a->argv[1]) && in_array($a->argv[1], ['person', 'organisation', 'news', 'community'])) {
|
||||||
$accounttype = $a->argv[1];
|
$accounttype = $a->argv[1];
|
||||||
} else {
|
} else {
|
||||||
$accounttype = '';
|
$accounttype = '';
|
||||||
|
|
Loading…
Reference in a new issue