4.1 Beta...ish #12
@ -88,7 +88,9 @@ class UrlGenerator extends RoutingBase {
|
|||||||
}
|
}
|
||||||
$path = implode('/', $path_segments);
|
$path = implode('/', $path_segments);
|
||||||
|
|
||||||
$scheme = (isset($_SERVER['HTTPS'])) ? 'https:' : 'http:';
|
$isHttps = $_SERVER['SERVER_PORT'] === '443' || isset($_SERVER['HTTPS']);
|
||||||
|
|
||||||
|
$scheme = ($isHttps) ? 'https:' : 'http:';
|
||||||
|
|
||||||
return "{$scheme}//{$this->host}/{$path}";
|
return "{$scheme}//{$this->host}/{$path}";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user