diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-30 02:25:22 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-30 02:25:22 +0000 |
commit | caef932790b72de1efa5b8ef2065dd3ca3b9eb5a (patch) | |
tree | 0a829eeabea8a4c5460ff7eda87bb60c4f3f0395 /actions | |
parent | 6f59a0482ed182ed3f544ebde84bbcfdcd9b4680 (diff) | |
download | elgg-caef932790b72de1efa5b8ef2065dd3ca3b9eb5a.tar.gz elgg-caef932790b72de1efa5b8ef2065dd3ca3b9eb5a.tar.bz2 |
Refs #2428 removed a few CONFIG uses in core
git-svn-id: http://code.elgg.org/elgg/trunk@7480 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/user/passwordreset.php | 2 | ||||
-rw-r--r-- | actions/usersettings/save.php | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/actions/user/passwordreset.php b/actions/user/passwordreset.php index 230dfd68f..201d6abcf 100644 --- a/actions/user/passwordreset.php +++ b/actions/user/passwordreset.php @@ -6,8 +6,6 @@ * @subpackage Core */ -global $CONFIG; - $user_guid = get_input('u'); $code = get_input('c'); diff --git a/actions/usersettings/save.php b/actions/usersettings/save.php index 29cbebc1a..eb6cdbd5d 100644 --- a/actions/usersettings/save.php +++ b/actions/usersettings/save.php @@ -6,8 +6,6 @@ * @subpackage UserSettings */ -global $CONFIG; - elgg_trigger_plugin_hook('usersettings:save', 'user'); forward(REFERER); |