1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

Fix undefined index warning in installation.

This commit is contained in:
Tobias Kappé 2018-08-12 14:54:02 +01:00
parent 32c0c07cc1
commit 52dbd55c7b

View File

@ -139,7 +139,7 @@
} }
function is_server_https() { function is_server_https() {
return (!empty($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] != 'off')) || $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https'; return (!empty($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] != 'off')) || (!empty($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https');
} }
function make_self_url_path() { function make_self_url_path() {