diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 85132e6..c89411f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,4 +8,4 @@ To fix the bug quickly, we need some infos: * the link you want to poche and which causes problem ## You want to fix a bug or to add a feature -Please fork poche and work with the dev branch. Do not work on master branch. \ No newline at end of file +Please fork poche and work with **the dev branch** only. Do not work on master branch. diff --git a/inc/poche/Tools.class.php b/inc/poche/Tools.class.php index 7a872e7..750553f 100644 --- a/inc/poche/Tools.class.php +++ b/inc/poche/Tools.class.php @@ -53,12 +53,12 @@ class Tools $scriptname = str_replace('/index.php', '/', $_SERVER["SCRIPT_NAME"]); - if (!isset($_SERVER["SERVER_NAME"])) { + if (!isset($_SERVER["HTTP_HOST"])) { return $scriptname; } return 'http' . ($https ? 's' : '') . '://' - . $_SERVER["SERVER_NAME"] . $serverport . $scriptname; + . $_SERVER["HTTP_HOST"] . $serverport . $scriptname; } public static function redirect($url = '')