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/notifications/actions | |
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/notifications/actions')
-rw-r--r-- | mod/notifications/actions/groupsave.php | 2 | ||||
-rw-r--r-- | mod/notifications/actions/save.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/notifications/actions/groupsave.php b/mod/notifications/actions/groupsave.php index 587b1117c..f39beb665 100644 --- a/mod/notifications/actions/groupsave.php +++ b/mod/notifications/actions/groupsave.php @@ -34,4 +34,4 @@ foreach($NOTIFICATION_HANDLERS as $method => $foo) { system_message(elgg_echo('notifications:subscriptions:success')); -forward($_SERVER['HTTP_REFERER']); +forward(REFERER); diff --git a/mod/notifications/actions/save.php b/mod/notifications/actions/save.php index 18f243254..eddda9dc6 100644 --- a/mod/notifications/actions/save.php +++ b/mod/notifications/actions/save.php @@ -31,4 +31,4 @@ foreach($subscriptions as $key => $subscription) { system_message(elgg_echo('notifications:subscriptions:success')); -forward($_SERVER['HTTP_REFERER']); +forward(REFERER); |