-
Bug
-
Resolution: Fixed
-
Minor
-
3.11.3
-
MOODLE_311_STABLE
-
MOODLE_402_STABLE, MOODLE_403_STABLE
-
MDL-73010-403 -
- Covered by automated tests (PHPUnit)
The readdir loop in repository/filessystem/lib.php line 102 is erroneous.
It reads : while (($file = readdir($dh)) != false) {
while it must be : while (($file = readdir($dh)) !== false) {
for the test condition to be correct.