]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
[TASK] don't assume http or https for webroot at installation
authorJerome Jutteau <jerome@jutteau.fr>
Tue, 17 Dec 2019 17:30:55 +0000 (18:30 +0100)
committerJerome Jutteau <jerome@jutteau.fr>
Tue, 17 Dec 2019 17:35:58 +0000 (18:35 +0100)
It will be up to Jirafeau administrator to force https at installation
If http nor https is forced in webroot, it's will be up to visitor's browser
to switch to https or http if both are available.

closes #208

Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
install.php

index 12107533d7abd6271a3dd0a808030495f694d3de..b729be5913efa3a98ba50dc2ae1b9abb06ec79f0 100644 (file)
@@ -225,7 +225,7 @@ case 2:
         <td class = "field"><input type = "text" name = "web_root"
         id = "input_web_root" value = "<?php
         echo(empty($cfg['web_root']) ?
-          'http://' . $_SERVER['HTTP_HOST'] . str_replace(basename(__FILE__),
+          $_SERVER['HTTP_HOST'] . str_replace(basename(__FILE__),
           '', $_SERVER['REQUEST_URI']) : $cfg['web_root']);
       ?>" size = "40" /></td>
         </tr> <tr> <td class = "info" colspan = "2"><?php

patrick-canterino.de