From: Philipp Date: Fri, 21 Oct 2022 07:12:24 +0000 (+0200) Subject: Reduce parentheses X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=cafb23f8f0dd1f784cf5a140b3ef818ee18bf291;p=friendica.git Reduce parentheses --- diff --git a/src/Content/Nav.php b/src/Content/Nav.php index 06e6895d9e..b80fb2d450 100644 --- a/src/Content/Nav.php +++ b/src/Content/Nav.php @@ -210,7 +210,7 @@ class Nav $homelink = DI::session()->get('visitor_home', ''); } - if ((DI::args()->getModuleName() != 'home') && (! (DI::userSession()->getLocalUserId()))) { + if (DI::args()->getModuleName() != 'home' && ! DI::userSession()->getLocalUserId()) { $nav['home'] = [$homelink, DI::l10n()->t('Home'), '', DI::l10n()->t('Home Page')]; }