diff --git a/wp-admin/includes/class-wp-filesystem-ftpext.php b/wp-admin/includes/class-wp-filesystem-ftpext.php index 528b0d0d35..b0cfbf7e7f 100644 --- a/wp-admin/includes/class-wp-filesystem-ftpext.php +++ b/wp-admin/includes/class-wp-filesystem-ftpext.php @@ -363,8 +363,9 @@ class WP_Filesystem_FTPext{ foreach($list as $line){ if (substr(strtolower($line), 0, 5) == 'total') continue; $struc = array(); - $current = preg_split("/[\s]+/",$line,9); - $struc['name'] = str_replace('//','',$current[8]); + $current = preg_split("/[\s]+/",$line,9); + $name_num = count($current) - 1; + $struc['name'] = str_replace('//','',$current[$name_num]); if( '.' == $struc['name'][0] && !$incdot) continue; @@ -398,6 +399,7 @@ class WP_Filesystem_FTPext{ //File $ret[$struc['name']] = $struc; } + return $ret; } function __destruct(){ if( $this->link )