don't show register in login if already logged in

This commit is contained in:
Evan Prodromou 2011-03-09 10:15:19 -05:00
parent 3d310c80be
commit b150b9439a
1 changed files with 2 additions and 1 deletions

View File

@ -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'),