diff options
author | Jeffery To <jeffery.to@gmail.com> | 2009-08-09 19:12:59 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2009-08-10 13:57:39 +0800 |
commit | 14b46e2183f10359cc53d597913a878f53e23719 (patch) | |
tree | 5abe41f6f475be0a05168f8859542e1a1a3b3b21 /actions/replies.php | |
parent | c1b19929f6234c4b9e30e16bae419c89c38c1169 (diff) |
Added configuration option to only allow OpenID logins.
If $config['site']['openidonly'] is set to true:
* the Login/Register pages will be removed from the navigation;
* directly accesses to the Login/Register pages will redirect to the
OpenID login page;
* most links to the Login/Register pages will link to the OpenID login
page instead.
The user will still need to set a password to access the API and RSS
feeds.
Diffstat (limited to 'actions/replies.php')
-rw-r--r-- | actions/replies.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/replies.php b/actions/replies.php index d7ed440e9..f14383d33 100644 --- a/actions/replies.php +++ b/actions/replies.php @@ -187,7 +187,9 @@ class RepliesAction extends OwnerDesignAction } } else { - $message .= sprintf(_('Why not [register an account](%%%%action.register%%%%) and then nudge %s or post a notice to his or her attention.'), $this->user->nickname); + $message .= sprintf(_('Why not [register an account](%%%%action.%s%%%%) and then nudge %s or post a notice to his or her attention.'), + (!common_config('site','openidonly')) ? 'register' : 'openidlogin', + $this->user->nickname); } $this->elementStart('div', 'guide'); |