X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fio%2Fclass_FrameworkDirectoryPointer.php;h=da220403458c081e6531ca4f7cc5a0b937c3efd5;hp=9b8d797243b6967f501518eb264f168fa809a424;hb=ad54740d5e9d94e7dd7a1aa9c44bc9f064bb3e91;hpb=bef9f7345e020880c5e912881aa3015e2e1e8285 diff --git a/inc/classes/main/io/class_FrameworkDirectoryPointer.php b/inc/classes/main/io/class_FrameworkDirectoryPointer.php index 9b8d7972..da220403 100644 --- a/inc/classes/main/io/class_FrameworkDirectoryPointer.php +++ b/inc/classes/main/io/class_FrameworkDirectoryPointer.php @@ -122,14 +122,14 @@ class FrameworkDirectoryPointer extends BaseFrameworkSystem { // Can the next entry be read? assert($this->getDirectoryInstance()->valid()); + // Default is FALSE + $current = FALSE; + // Is it a dot directory? - if ($this->getDirectoryInstance()->isDot()) { - // Then call this method recursive - $current = $this->readRawDirectory(); - } else { + if (!$this->getDirectoryInstance()->isDot()) { // Read data from the directory pointer and return it $current = $this->getDirectoryInstance()->current(); - } + } // END - if // Advance to next entry $this->getDirectoryInstance()->next();