Patch duplicate call to seekFirstPage during recursive search.

This commit is contained in:
David Hunt 2015-07-27 18:42:33 -04:00
parent 7a01df7ea9
commit 1e1f261ea9
1 changed files with 2 additions and 4 deletions

View File

@ -84,10 +84,8 @@ class Directory extends Entry
if(
$node instanceof Directory
&& strpos($node->getUri(), '.') !== 0
){
if( $node->seekFirstPage() ){
return $node->seekFirstPage();
}
&& $childNode = $node->seekFirstPage() ){
return $childNode;
}
}
}