From 75836f33860f26ca55ec8e8661cff4b0edc2fe5e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 9 Dec 2005 21:34:29 +0100 Subject: option to redirect to https url for login, option ENABLE_LOGIN_SSL (fixes some non-absolute redirects) --- logout.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'logout.php') diff --git a/logout.php b/logout.php index 9af2bab61..b258067a6 100644 --- a/logout.php +++ b/logout.php @@ -7,7 +7,17 @@ logout_user(); if (!USE_HTTP_AUTH) { - header("Location: login.php"); + $url_path = get_script_urlpath(); + + if (ENABLE_LOGIN_SSL) { + $protocol = "https"; + } else { + $protocol = "http"; + } + + $redirect_base = "$protocol://" . $_SERVER["SERVER_NAME"] . $url_path; + + header("Location: $redirect_base/login.php"); } else { ?> -- cgit v1.2.3-54-g00ecf