Index: trunk/extensions/Deployment/includes/filesystems/Ssh2Filesystem.php |
— | — | @@ -368,7 +368,7 @@ |
369 | 369 | |
370 | 370 | if ( |
371 | 371 | ('.' == $struc['name'] || '..' == $struc['name'] ) |
372 | | - || ( !$include_hidden && '.' == $struc['name'][0] ) |
| 372 | + || ( !$includeHidden && '.' == $struc['name'][0] ) |
373 | 373 | || ( $limit_file && $struc['name'] != $limit_file ) |
374 | 374 | ) { |
375 | 375 | continue; // Do not care about these folders. |
— | — | @@ -388,7 +388,7 @@ |
389 | 389 | |
390 | 390 | if ( 'd' == $struc['type'] ) { |
391 | 391 | if ( $recursive ) { |
392 | | - $struc['files'] = $this->dirlist( $path . '/' . $struc['name'], $include_hidden, $recursive ); |
| 392 | + $struc['files'] = $this->listDir( $path . '/' . $struc['name'], $includeHidden, $recursive ); |
393 | 393 | } |
394 | 394 | else { |
395 | 395 | $struc['files'] = array(); |