summaryrefslogtreecommitdiff
path: root/login.php
diff options
context:
space:
mode:
Diffstat (limited to 'login.php')
-rw-r--r--login.php7
1 files changed, 6 insertions, 1 deletions
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");