Test if $url is already prefixed by '/'
This commit is contained in:
parent
0f87a0248f
commit
91b4045791
|
@ -124,6 +124,7 @@ class URLGenerator implements IURLGenerator {
|
|||
* @return string the absolute version of the url
|
||||
*/
|
||||
public function getAbsoluteURL($url) {
|
||||
return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost() . '/' . $url;
|
||||
$separator = $url[0] === '/' ? '' : '/';
|
||||
return \OC_Request::serverProtocol() . '://' . \OC_Request::serverHost() . $separator . $url;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue