]> git.p6c8.net - jirafeau.git/blobdiff - lib/functions.php
Provide URL scheme in installer
[jirafeau.git] / lib / functions.php
index 064d3a1e06dc922edfc27c487f784c42ce6b8e03..ecd7be8c7aa4506e6052fb6f35735d14ec17076e 100644 (file)
@@ -1638,7 +1638,8 @@ function jirafeau_add_ending_slash($path)
 
 function jirafeau_default_web_root()
 {
 
 function jirafeau_default_web_root()
 {
-    return $_SERVER['HTTP_HOST'] . str_replace('install.php', '', $_SERVER['REQUEST_URI']);
+    $url_scheme = (isset($_SERVER['HTTPS'])) ? 'https://' : 'http://';
+    return $url_scheme . $_SERVER['HTTP_HOST'] . str_replace('install.php', '', $_SERVER['REQUEST_URI']);
 }
 
 function jirafeau_get_download_stats($hash)
 }
 
 function jirafeau_get_download_stats($hash)

patrick-canterino.de