Test if $url is already prefixed by '/'

This commit is contained in:
Thomas Tanghus 2014-02-07 17:39:19 +01:00
parent 5f610a1cbc
commit 2ff0d3a255
1 changed files with 2 additions and 1 deletions

View File

@ -147,6 +147,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;
}
}