diff options
author | Craig Andrews <candrews@integralblue.com> | 2009-08-10 11:53:35 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-08-10 11:53:35 -0400 |
commit | e9ed20a69d8f646bc85151c1e890f5828a966fcf (patch) | |
tree | e72bdf25cc94c630c31863d2985b1f29b4b27414 /actions/noticesearch.php | |
parent | 17dcf1c3170bc905e3b0fdffc804d6f7229ac61b (diff) | |
parent | 14b46e2183f10359cc53d597913a878f53e23719 (diff) |
Merge commit 'jeff-themovie/0.8.x-openidonly' into 0.8.x
Diffstat (limited to 'actions/noticesearch.php')
-rw-r--r-- | actions/noticesearch.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php index 49b473d9e..90b3309cf 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -121,7 +121,9 @@ class NoticesearchAction extends SearchAction $message = sprintf(_('Be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q)); } else { - $message = sprintf(_('Why not [register an account](%%%%action.register%%%%) and be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q)); + $message = sprintf(_('Why not [register an account](%%%%action.%s%%%%) and be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), + (!common_config('site','openidonly')) ? 'register' : 'openidlogin', + urlencode($q)); } $this->elementStart('div', 'guide'); |