diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-10-09 15:41:59 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-10-09 15:41:59 -0400 |
commit | 2e769649abf4f9b3712287e24eb42c5a93a8035e (patch) | |
tree | 5b7b23cf8ad9ffcda182c536c63f7f9ec42a54e2 /src/views/pages/users/new.html.php | |
parent | 710942016b2a363f1301259dac01410188707d85 (diff) |
Link to the userlist from the user registration page, if anon_userlist is enabled.
Diffstat (limited to 'src/views/pages/users/new.html.php')
-rw-r--r-- | src/views/pages/users/new.html.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/views/pages/users/new.html.php b/src/views/pages/users/new.html.php index 8b6bdf8..9df376f 100644 --- a/src/views/pages/users/new.html.php +++ b/src/views/pages/users/new.html.php @@ -7,6 +7,16 @@ $t->openTag('form', array('method'=>'post', 'action'=>$t->url('users'))); $t->openFieldset("New User: Step 1"); + +if ($VARS['userlist']) { + $t->inputP("If you may have already created a username, please, ". + "<em>please</em> check the ". + $t->link($t->url('users/'), 'user-list', true). + " to find your old username, instead of creating a new ". + "user. If you don't like the name, you can log in and ". + "change it."); +} + if (in_array('illegal name', $VARS['errors'])) { $t->inputP("That is a forbidden username.", true); } |