r69366 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r69365‎ | r69366 | r69367 >
Date:00:35, 15 July 2010
Author:jeroendedauw
Status:deferred
Tags:
Comment:
Follow up to r69365
Modified paths:
  • /trunk/extensions/Deployment/includes/filesystems/Ssh2Filesystem.php (modified) (history)

Diff [purge]

Index: trunk/extensions/Deployment/includes/filesystems/Ssh2Filesystem.php
@@ -368,7 +368,7 @@
369369
370370 if (
371371 ('.' == $struc['name'] || '..' == $struc['name'] )
372 - || ( !$include_hidden && '.' == $struc['name'][0] )
 372+ || ( !$includeHidden && '.' == $struc['name'][0] )
373373 || ( $limit_file && $struc['name'] != $limit_file )
374374 ) {
375375 continue; // Do not care about these folders.
@@ -388,7 +388,7 @@
389389
390390 if ( 'd' == $struc['type'] ) {
391391 if ( $recursive ) {
392 - $struc['files'] = $this->dirlist( $path . '/' . $struc['name'], $include_hidden, $recursive );
 392+ $struc['files'] = $this->listDir( $path . '/' . $struc['name'], $includeHidden, $recursive );
393393 }
394394 else {
395395 $struc['files'] = array();

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r69365Work on porting WP filesystem abstraction classesjeroendedauw00:29, 15 July 2010

Status & tagging log