Url: Add basePath to baseUrl in method getBaseUrl

refs #12133
This commit is contained in:
Noah Hilverling 2016-10-19 09:40:08 +02:00
parent 13827c79e4
commit 2fd1a957a8
1 changed files with 3 additions and 0 deletions

View File

@ -428,6 +428,9 @@ class Url
if ($this->getPort()) {
$urlString .= ':' . $this->getPort();
}
if ($this->getBasePath()) {
$urlString .= $this->getBasePath();
}
return $urlString;
}