summaryrefslogtreecommitdiff
path: root/src/controllers/Users.class.php
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2011-09-25 22:10:40 -0700
committerLuke Shumaker <lukeshu@sbcglobal.net>2011-09-25 22:10:40 -0700
commitff75fd84aca136360d05e4980a98718b9c4484b0 (patch)
tree77113a752d2f27b20bcdb01e260312357c532d24 /src/controllers/Users.class.php
parentfd5c709fc7497cca08971724a3c0d4bc6fefa39f (diff)
Don't let a logged in user go through new-user registration.
Diffstat (limited to 'src/controllers/Users.class.php')
-rw-r--r--src/controllers/Users.class.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/controllers/Users.class.php b/src/controllers/Users.class.php
index 2461f65..52fd33c 100644
--- a/src/controllers/Users.class.php
+++ b/src/controllers/Users.class.php
@@ -59,6 +59,10 @@ class Users extends Controller {
public function new_user($routed, $vars) {
// since there will never be a remainder to `users/new', we can
// use that parameter to pass in some data.
+ if (Login::isLoggedIn()) {
+ $this->showView('users/new-logged-in', array());
+ exit();
+ }
if (!isset($vars['errors'])) $vars['errors'] = array();
global $mm; $pm = $mm->pluginManager();
$vars['antispam_html'] = $pm->callHook('antispam_html');