Merge branch 'master' of git://github.com/DmitrySandalov/poche into DmitrySandalov-master

This commit is contained in:
Nicolas Lœuillet
2013-11-13 14:52:28 +01:00
2 changed files with 3 additions and 3 deletions

View File

@ -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 = '')