Test if $url is already prefixed by '/'

remotes/origin/ldap_group_count
Thomas Tanghus 11 years ago
parent 5f610a1cbc
commit 2ff0d3a255
  1. 3
      lib/private/urlgenerator.php

@ -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;
}
}

Loading…
Cancel
Save