Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Fix call to filterNodeName(): pass an "" parameter will trigger the i…
Browse files Browse the repository at this point in the history
…s_file() test.
  • Loading branch information
cdujeu committed Oct 30, 2015
1 parent c480912 commit 0881a70
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -153,7 +153,8 @@ public function getChildren()
if ($file == "." || $file == "..") {
continue;
}
// This function will perform the is_dir() call and update $isDir variable.
// This function will perform the is_dir() call and update $isLeaf variable.
$isLeaf = "";
if (!$this->getAccessDriver()->filterNodeName($this->getUrl(), $file, $isLeaf, array("d"=>true, "f"=>true, "z"=>true))){
continue;
}
Expand Down

0 comments on commit 0881a70

Please sign in to comment.