From 3423daa3784995f25b72ebfb1e17d59f745f9354 Mon Sep 17 00:00:00 2001 From: ewinslow Date: Tue, 2 Nov 2010 18:20:13 +0000 Subject: Using REFERER shorthand throughout core git-svn-id: http://code.elgg.org/elgg/trunk@7193 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/profile/actions/edit.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/profile/actions/edit.php') diff --git a/mod/profile/actions/edit.php b/mod/profile/actions/edit.php index b9cc8e19d..c91e5e5a7 100644 --- a/mod/profile/actions/edit.php +++ b/mod/profile/actions/edit.php @@ -13,7 +13,7 @@ $profile_owner = get_user_by_username($profile_username); if (!$profile_owner || !$profile_owner->canEdit()) { system_message(elgg_echo("profile:noaccess")); - forward($_SERVER['HTTP_REFERER']); + forward(REFERER); } // grab the defined profile field names and their load the values from POST. @@ -48,7 +48,7 @@ foreach($CONFIG->profile as $shortname => $valuetype) { if (!is_array($value) && $valuetype != 'longtext' && elgg_strlen($value) > 250) { $error = sprintf(elgg_echo('profile:field_too_long'), elgg_echo("profile:{$shortname}")); register_error($error); - forward($_SERVER['HTTP_REFERER']); + forward(REFERER); } if ($valuetype == 'tags') { -- cgit v1.2.3