diff options
author | Eric Helgeson <erichelgeson@gmail.com> | 2010-02-20 21:57:05 +0000 |
---|---|---|
committer | Eric Helgeson <erichelgeson@gmail.com> | 2010-02-20 21:57:05 +0000 |
commit | 86f2f530ef60fdb601720885d493cf5b2a446e6b (patch) | |
tree | af0e9fc45a1bd8b38a5b49a3d8084d4a54707aa3 | |
parent | 0b5308dea97bae5211ede91e9821cf0834e078a3 (diff) |
Fixed incorrect link on registration successful page
-rw-r--r-- | plugins/OpenID/OpenIDPlugin.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index 248afe3fa..6b35ec3e1 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -235,9 +235,14 @@ class OpenIDPlugin extends Plugin switch ($name) { case 'register': - $instr = '(Have an [OpenID](http://openid.net/)? ' . - 'Try our [OpenID registration]'. - '(%%action.openidlogin%%)!)'; + if (common_logged_in()) { + $instr = '(Have an [OpenID](http://openid.net/)? ' . + '[Add an OpenID to your account](%%action.openidsettings%%)!'; + } else { + $instr = '(Have an [OpenID](http://openid.net/)? ' . + 'Try our [OpenID registration]'. + '(%%action.openidlogin%%)!)'; + } break; case 'login': $instr = '(Have an [OpenID](http://openid.net/)? ' . |