1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-02 04:59:15 +00:00

Merge pull request #228 from WGH-/installer_undefined_index

fixes "undefined index HTTPS" notice in installer script
This commit is contained in:
Andrew Dolgov
2013-06-19 14:43:58 -07:00

View File

@@ -199,7 +199,7 @@
}
function make_self_url_path() {
$url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
$url_path = ((!isset($_SERVER['HTTPS']) || $_SERVER['HTTPS'] != "on") ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
return $url_path;
}