CardDAV (beta/unstable)

This commit is contained in:
RainLoop Team 2013-12-24 03:56:47 +04:00
parent 248aab17c2
commit fb54efe922
25 changed files with 133 additions and 26 deletions

View file

@ -573,7 +573,7 @@ class Http
*/
public function GetUrl()
{
return '/'.$this->GetServer('REQUEST_URI', '');
return $this->GetServer('REQUEST_URI', '');
}
/**
@ -583,12 +583,4 @@ class Http
{
return $this->GetScheme().'://'.$this->GetHost(true, false).$this->GetPath();
}
/**
* @return string
*/
public function GetFullUrlWithQuery()
{
return $this->GetScheme().'://'.$this->GetHost(true, false).$this->GetUrl();
}
}