summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
Diffstat (limited to 'classes')
-rwxr-xr-xclasses/handler/public.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index 16f8020bb..c3f18d8bb 100755
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -712,10 +712,8 @@ class Handler_Public extends Handler {
user_error("Failed login attempt for $login from {$_SERVER['REMOTE_ADDR']}", E_USER_WARNING);
}
- $return = clean($_REQUEST['return']);
-
- if ($return && !is_absolute_url($return)) {
- header("Location: " . $return);
+ if (clean($_REQUEST['return'])) {
+ header("Location: " . clean($_REQUEST['return']));
} else {
header("Location: " . get_self_url_prefix());
}