From 3efbf1beb7a08341fc05a551dff98da680786fd0 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 26 Sep 2020 18:59:31 +0000 Subject: [PATCH] Fix notice --- src/Module/Conversation/Community.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Module/Conversation/Community.php b/src/Module/Conversation/Community.php index 97cc44eaff..1bb7f66e26 100644 --- a/src/Module/Conversation/Community.php +++ b/src/Module/Conversation/Community.php @@ -116,7 +116,7 @@ class Community extends BaseModule DI::page()['aside'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/community_accounts.tpl'), [ '$title' => DI::l10n()->t('Accounts'), '$content' => self::$content, - '$accounttype' => $parameters['accounttype'], + '$accounttype' => ($parameters['accounttype'] ?? ''), '$all' => DI::l10n()->t('All'), '$person' => DI::l10n()->t('Persons'), '$organisation' => DI::l10n()->t('Organisations'), -- 2.39.5