Make WordPress Core


Ignore:
Timestamp:
04/14/2009 05:16:44 PM (17 years ago)
Author:
ryan
Message:

Revert FTP parts of [10919]. fixes #9535 see #9525

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-filesystem-ftpsockets.php

    r10919 r10930  
    187187    function getchmod($file) {
    188188        $dir = $this->dirlist($file);
    189         return $this->getnumchmodfromh( $dir[basename($file)]['perms'] );
     189        return $dir[$file]['permsn'];
    190190    }
    191191
     
    282282
    283283    function dirlist($path = '.', $incdot = false, $recursive = false ) {
    284 
    285         if ( substr($path, -1) !== '/') {
    286             $limit = basename($path);
    287             $path = trailingslashit(dirname($path));
     284        if( $this->is_file($path) ) {
     285            $limitFile = basename($path);
     286            $path = dirname($path) . '/';
    288287        } else {
    289             $limit = false;
     288            $limitFile = false;
    290289        }
    291290
     
    293292        if( ! $list )
    294293            return false;
    295 
    296294        if( empty($list) )
    297295            return array();
     
    299297        $ret = array();
    300298        foreach ( $list as $struc ) {
    301             if ( $limit && $struc['name'] != $limit )
    302                 continue;
    303299
    304300            if ( 'd' == $struc['type'] ) {
Note: See TracChangeset for help on using the changeset viewer.