diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 03:33:52 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 03:33:52 +0000 |
commit | 949a233076ec18f86e60f90a7a8837cb422664af (patch) | |
tree | 0286c9cb2c3301a164505e39dccf02a4e0a98497 /mod/profile | |
parent | d4e4268d11612408e4989a5c57f69fcb2febe8aa (diff) | |
download | elgg-949a233076ec18f86e60f90a7a8837cb422664af.tar.gz elgg-949a233076ec18f86e60f90a7a8837cb422664af.tar.bz2 |
Refs #2428 almost done removing CONFIG access - mostly plugin start.php left
git-svn-id: http://code.elgg.org/elgg/trunk@7999 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile')
-rw-r--r-- | mod/profile/icon.php | 5 | ||||
-rw-r--r-- | mod/profile/start.php | 1 |
2 files changed, 2 insertions, 4 deletions
diff --git a/mod/profile/icon.php b/mod/profile/icon.php index 2848c3e4d..a624c0811 100644 --- a/mod/profile/icon.php +++ b/mod/profile/icon.php @@ -35,9 +35,8 @@ if ($filehandler->open("read")) { } if (!$success) { - global $CONFIG; - $path = elgg_view('icon/user/default/'.$size); - header("Location: {$path}"); + $path = elgg_view("icon/user/default/$size"); + header("Location: $path"); exit; } diff --git a/mod/profile/start.php b/mod/profile/start.php index 49f310882..06c5dfdc2 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -11,7 +11,6 @@ elgg_register_event_handler('init', 'system', 'profile_init', 1); * Profile init function */ function profile_init() { - global $CONFIG; // Register a URL handler for users - this means that profile_url() // will dictate the URL for all ElggUser objects |