Skip to content

Commit ac99cb8

Browse files
authored
Merge pull request #22 from anhofmann/master
leave urls without host alone
2 parents 663bbad + 736e6ae commit ac99cb8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/UrlGeneratorService.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ private function addSid(string $url, ?\Illuminate\Routing\Route $route = null):
1414
}
1515

1616
// Don't expose sessionID to other Domains
17-
if(parse_url($url, PHP_URL_HOST) != parse_url(\Config::get('app.url'), PHP_URL_HOST)) {
17+
$host = parse_url($url, PHP_URL_HOST);
18+
if($host && $host != parse_url(\Config::get('app.url'), PHP_URL_HOST)) {
1819
return $url;
1920
}
2021

0 commit comments

Comments
 (0)