NavigationItem: Return a instance of Url in method getUrl(), really

refs #5600
This commit is contained in:
Johannes Meyer 2015-09-07 13:20:17 +02:00
parent 451a0c91f2
commit 0feaec7af1

View File

@ -446,7 +446,7 @@ class NavigationItem implements IteratorAggregate
public function getUrl()
{
if ($this->url === null && $this->hasChildren()) {
return '#';
$this->setUrl(Url::fromPath('#'));
}
return $this->url;