aboutsummaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
Diffstat (limited to 'actions')
-rw-r--r--actions/register.php3
-rw-r--r--actions/useradd.php2
2 files changed, 5 insertions, 0 deletions
diff --git a/actions/register.php b/actions/register.php
index b404d844a..43a653b3f 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -13,6 +13,8 @@
require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
global $CONFIG;
+
+ action_gatekeeper();
// Get variables
$username = get_input('username');
@@ -22,6 +24,7 @@
$name = get_input('name');
$admin = get_input('admin');
+ if (is_array($admin)) $admin = $admin[0];
if (!$CONFIG->disable_registration)
diff --git a/actions/useradd.php b/actions/useradd.php
index 3ca17dba7..cdd9adcf7 100644
--- a/actions/useradd.php
+++ b/actions/useradd.php
@@ -14,6 +14,7 @@
require_once(dirname(dirname(__FILE__)) . "/engine/start.php");
admin_gatekeeper(); // Only admins can make someone an admin
+ action_gatekeeper();
// Get variables
$username = get_input('username');
@@ -23,6 +24,7 @@
$name = get_input('name');
$admin = get_input('admin');
+ if (is_array($admin)) $admin = $admin[0];
// For now, just try and register the user
if (