From 3a82bc6005fe985ec21867a2abf3d75427b7a5c6 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 14 Jun 2006 08:24:15 +0100 Subject: [PATCH] set redirect_base to https:// prefix when ENABLE_LOGIN_SSL is enabled (closes #71) --- login.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/login.php b/login.php index a7b6ca42a..2bd0d2692 100644 --- a/login.php +++ b/login.php @@ -7,7 +7,12 @@ require_once "functions.php"; $url_path = get_script_urlpath(); - $redirect_base = "http://" . $_SERVER["SERVER_NAME"] . $url_path; + + if (ENABLE_LOGIN_SSL) { + $redirect_base = "https://" . $_SERVER["SERVER_NAME"] . $url_path; + } else { + $redirect_base = "http://" . $_SERVER["SERVER_NAME"] . $url_path; + } if (SINGLE_USER_MODE) { header("Location: $redirect_base/tt-rss.php");