NavigationItem: Fix method getUniqueName()

refs #5600
This commit is contained in:
Johannes Meyer 2015-09-04 09:25:25 +02:00
parent a6b2c23684
commit a8d5a78aa2

View File

@ -351,7 +351,7 @@ class NavigationItem implements IteratorAggregate
return 'navigation-' . $this->getEscapedName();
}
return $this->getParent()->getEscapedName() . '-' . $this->getEscapedName();
return $this->getParent()->getUniqueName() . '-' . $this->getEscapedName();
}
/**