Merge pull request #9307 from annando/notice

Fix notice "Undefined index: accounttype"
2022.09-rc
Tobias Diekershoff 2020-09-28 14:30:01 +02:00 zatwierdzone przez GitHub
commit 584383101a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -99,7 +99,10 @@ class Community extends BaseModule
]);
if (local_user() && DI::config()->get('system', 'community_no_sharer')) {
$path = self::$content . ($parameters['accounttype'] ? '/' . $parameters['accounttype'] : '');
$path = self::$content;
if (!empty($parameters['accounttype'])) {
$path .= '/' . $parameters['accounttype'];
}
$query_parameters = [];
if (!empty($_GET['since_id'])) {