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/controllers/Users.class.php | |
parent | 710942016b2a363f1301259dac01410188707d85 (diff) |
Link to the userlist from the user registration page, if anon_userlist is enabled.
Diffstat (limited to 'src/controllers/Users.class.php')
-rw-r--r-- | src/controllers/Users.class.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/controllers/Users.class.php b/src/controllers/Users.class.php index ac6b06a..dbd5120 100644 --- a/src/controllers/Users.class.php +++ b/src/controllers/Users.class.php @@ -72,8 +72,13 @@ class Users extends Controller { exit(); } if (!isset($vars['errors'])) $vars['errors'] = array(); - global $mm; $pm = $mm->pluginManager(); + + global $mm; + $pm = $mm->pluginManager(); + $db = $mm->database(); + $vars['antispam_html'] = $pm->callHook('antispam_html'); + $vars['userlist'] = $db->getSysConf('anon_userlist'); $this->showView('users/new', $vars); } |