From ff75fd84aca136360d05e4980a98718b9c4484b0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 25 Sep 2011 22:10:40 -0700 Subject: Don't let a logged in user go through new-user registration. --- src/controllers/Users.class.php | 4 ++++ src/views/pages/users/new-logged-in.html.php | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/views/pages/users/new-logged-in.html.php 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'); diff --git a/src/views/pages/users/new-logged-in.html.php b/src/views/pages/users/new-logged-in.html.php new file mode 100644 index 0000000..51823fe --- /dev/null +++ b/src/views/pages/users/new-logged-in.html.php @@ -0,0 +1,8 @@ +header('Create new user'); + +$t->paragraph("Dude, you're logged in, what are you doing creating an account?"); + +$t->footer(); -- cgit v1.2.3