Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 54b4e11335 - Show all commits

View File

@ -88,7 +88,7 @@ class UrlGenerator extends RoutingBase {
}
$path = implode('/', $path_segments);
$scheme = (isset($_SERVER['HTTPS'])) ? 'https:' : '';
$scheme = (isset($_SERVER['HTTPS'])) ? 'https:' : 'http';
return "{$scheme}//{$this->host}/{$path}";
}