diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 18:20:13 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-02 18:20:13 +0000 |
commit | 3423daa3784995f25b72ebfb1e17d59f745f9354 (patch) | |
tree | 67c91d9979825a40906b432dad40afe860458930 /mod/profile/actions/iconupload.php | |
parent | 9e4472a987fb626b370f36377f761bde5ba32bdd (diff) | |
download | elgg-3423daa3784995f25b72ebfb1e17d59f745f9354.tar.gz elgg-3423daa3784995f25b72ebfb1e17d59f745f9354.tar.bz2 |
Using REFERER shorthand throughout core
git-svn-id: http://code.elgg.org/elgg/trunk@7193 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/actions/iconupload.php')
-rw-r--r-- | mod/profile/actions/iconupload.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/profile/actions/iconupload.php b/mod/profile/actions/iconupload.php index e780bde76..cd842752f 100644 --- a/mod/profile/actions/iconupload.php +++ b/mod/profile/actions/iconupload.php @@ -12,7 +12,7 @@ $profile_owner = get_user_by_username($profile_username); if (!$profile_owner || !($profile_owner instanceof ElggUser) || !$profile_owner->canEdit()) { register_error(elgg_echo('profile:icon:fail')); - forward($_SERVER['HTTP_REFERER']); + forward(REFERER); } $profile_owner_guid = $profile_owner->getGUID(); @@ -49,7 +49,7 @@ foreach ($icon_sizes as $name => $size_info) { } system_message(elgg_echo('profile:icon:notfound')); - forward($_SERVER['HTTP_REFERER']); + forward(REFERER); } } @@ -61,4 +61,4 @@ if (trigger_elgg_event('profileiconupdate', $profile_owner->type, $profile_owner } //forward the user back to the upload page to crop -forward($_SERVER['HTTP_REFERER']); +forward(REFERER); |