Commit f841e5d2 authored by Taylor Otwell's avatar Taylor Otwell

One more fix to URL slash handling! :)

parent 5ad4943e
...@@ -31,7 +31,7 @@ class URL { ...@@ -31,7 +31,7 @@ class URL {
$base = 'https://'.substr($base, 7); $base = 'https://'.substr($base, 7);
} }
return rtrim($base, '/').'/'.ltrim($url, '/'); return rtrim($base, '/').'/'.trim($url, '/');
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment