Skip to content

Commit

Permalink
Merge branch '2.1-src' into 2.1_n-src
Browse files Browse the repository at this point in the history
  • Loading branch information
nao-pon committed Jun 23, 2017
2 parents 9fad2b0 + 7b6eb6b commit b2f28f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2017-0x-xx Naoki Sawada <[email protected]>
2017-06-23 Naoki Sawada <[email protected]>

* elFinder (2.1.25):
- [php] Fixed #2014 "Parse error" on PHP < 5.3
Expand Down
2 changes: 1 addition & 1 deletion php/elFinderVolumeLocalFileSystem.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ protected function _subdirs($path) {
if ($dirItr->hasChildren()) {
$dirs = true;
$name = $dirItr->getSubPathName();
while($name) {
while($dirItr->valid()) {
if (!$this->attr($path . DIRECTORY_SEPARATOR . $name, 'read', null, true)) {
$dirs = false;
$dirItr->next();
Expand Down

0 comments on commit b2f28f5

Please sign in to comment.