From: Evan Prodromou Date: Wed, 9 Mar 2011 15:15:19 +0000 (-0500) Subject: don't show register in login if already logged in X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b150b9439a05d954e8ea17bc366b50d2a50e4ae8;p=quix0rs-gnu-social.git don't show register in login if already logged in --- diff --git a/lib/logingroupnav.php b/lib/logingroupnav.php index 3c67f76322..5d1b52f795 100644 --- a/lib/logingroupnav.php +++ b/lib/logingroupnav.php @@ -66,7 +66,8 @@ class LoginGroupNav extends Menu _('Login with a username and password'), $action_name === 'login'); - if (!(common_config('site','closed') || common_config('site','inviteonly'))) { + if (!common_logged_in() && + !(common_config('site','closed') || common_config('site','inviteonly'))) { $this->action->menuItem(common_local_url('register'), // TRANS: Menu item for registering with the StatusNet site. _m('MENU','Register'),