aboutsummaryrefslogtreecommitdiff
path: root/actions/user
diff options
context:
space:
mode:
Diffstat (limited to 'actions/user')
-rw-r--r--actions/user/default_access.php2
-rw-r--r--actions/user/language.php2
-rw-r--r--actions/user/name.php2
-rw-r--r--actions/user/password.php2
-rw-r--r--actions/user/spotlight.php2
5 files changed, 0 insertions, 10 deletions
diff --git a/actions/user/default_access.php b/actions/user/default_access.php
index ae489dcbe..0c2390842 100644
--- a/actions/user/default_access.php
+++ b/actions/user/default_access.php
@@ -9,8 +9,6 @@
global $CONFIG;
if ($CONFIG->allow_user_default_access) {
- gatekeeper();
-
$default_access = get_input('default_access');
$user_id = get_input('guid');
diff --git a/actions/user/language.php b/actions/user/language.php
index 252263cd2..44c591d7a 100644
--- a/actions/user/language.php
+++ b/actions/user/language.php
@@ -6,8 +6,6 @@
* @subpackage Core
*/
-gatekeeper();
-
$language = get_input('language');
$user_id = get_input('guid');
diff --git a/actions/user/name.php b/actions/user/name.php
index c3e79d725..e293d409c 100644
--- a/actions/user/name.php
+++ b/actions/user/name.php
@@ -6,8 +6,6 @@
* @subpackage Core
*/
-gatekeeper();
-
$name = strip_tags(get_input('name'));
$user_id = get_input('guid');
diff --git a/actions/user/password.php b/actions/user/password.php
index 32b27bf74..bbeb0ea7f 100644
--- a/actions/user/password.php
+++ b/actions/user/password.php
@@ -6,8 +6,6 @@
* @subpackage Core
*/
-gatekeeper();
-
$current_password = get_input('current_password');
$password = get_input('password');
$password2 = get_input('password2');
diff --git a/actions/user/spotlight.php b/actions/user/spotlight.php
index 00525254b..390197e78 100644
--- a/actions/user/spotlight.php
+++ b/actions/user/spotlight.php
@@ -7,8 +7,6 @@
* @todo This is deprecated in 1.8
*/
-gatekeeper();
-
$closed = get_input('closed', 'true');
if ($closed != 'true') {
$closed = false;