diff options
author | Brion Vibber <brion@pobox.com> | 2010-04-19 18:47:56 +0200 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-19 18:47:56 +0200 |
commit | fee6b78e2896705b831fc98025581405e3e21e27 (patch) | |
tree | 8fe8407b2749198346040a88831058da9bc1acf3 | |
parent | 83edc126c04c544a577675507e0ca01ca5c2e665 (diff) | |
parent | 369885f04f6822355da24595637916e4263db702 (diff) |
Merge branch 'testing' into 0.9.x
-rw-r--r-- | actions/login.php | 10 | ||||
-rw-r--r-- | lib/action.php | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/actions/login.php b/actions/login.php index 8ea3c800b..dc6352368 100644 --- a/actions/login.php +++ b/actions/login.php @@ -267,9 +267,13 @@ class LoginAction extends Action 'user name and password ' . 'before changing your settings.'); } else { - return _('Login with your username and password. ' . - 'Don\'t have a username yet? ' . - '[Register](%%action.register%%) a new account.'); + $prompt = _('Login with your username and password.'); + if (!common_config('site', 'closed') && !common_config('site', 'inviteonly')) { + $prompt .= ' '; + $prompt .= _('Don\'t have a username yet? ' . + '[Register](%%action.register%%) a new account.'); + } + return $prompt; } } diff --git a/lib/action.php b/lib/action.php index 4296ae7de..98e5ec2c9 100644 --- a/lib/action.php +++ b/lib/action.php @@ -467,7 +467,7 @@ class Action extends HTMLOutputter // lawsuit _m('MENU', 'Logout'), $tooltip, false, 'nav_logout'); } else { - if (!common_config('site', 'closed')) { + if (!common_config('site', 'closed') && !common_config('site', 'inviteonly')) { // TRANS: Tooltip for main menu option "Register" $tooltip = _m('TOOLTIP', 'Create an account'); $this->menuItem(common_local_url('register'), |