diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-24 01:23:02 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-24 01:23:02 +0000 |
commit | 38f3674095d16bfb73320eb2e0b566ad4484882d (patch) | |
tree | fdb6d200e5aed04ec6e7e77bfa2c76fcafd75639 /actions/user | |
parent | 9c1e6d6463937bdee2d1de9735463a69f8af305d (diff) | |
download | elgg-38f3674095d16bfb73320eb2e0b566ad4484882d.tar.gz elgg-38f3674095d16bfb73320eb2e0b566ad4484882d.tar.bz2 |
Refs #2451: Removed gatekeeper/admin_gatekeeper() calls from core actions
git-svn-id: http://code.elgg.org/elgg/trunk@7433 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/user')
-rw-r--r-- | actions/user/default_access.php | 2 | ||||
-rw-r--r-- | actions/user/language.php | 2 | ||||
-rw-r--r-- | actions/user/name.php | 2 | ||||
-rw-r--r-- | actions/user/password.php | 2 | ||||
-rw-r--r-- | actions/user/spotlight.php | 2 |
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; |