Cleaned getFirstPage a bit

This commit is contained in:
Stéphane Goetz 2015-07-19 01:16:04 +02:00
parent 87fbb6f15d
commit d531de86cf
1 changed files with 2 additions and 7 deletions

View File

@ -66,16 +66,11 @@ class Directory extends Entry
return $this->first_page;
}
if (!$this instanceof Directory) {
return false;
}
// First we try to find a real page
foreach ($this->getEntries() as $node) {
if ($node instanceof Content) {
// TODO :: this condition looks weird ...
if (!$node->getParent() && $node->getTitle() == 'index') {
//the homepage should not count as first page
if ($this instanceof Root && $this->getIndexPage() == $node) {
// The homepage should not count as first page
continue;
}