Changeset 7171
- Timestamp:
- 03/06/2008 06:14:58 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-filesystem-ftpsockets.php
r7164 r7171 180 180 } 181 181 182 function chdir($file){ 183 return $this->ftp->chdir($file); 184 } 185 182 186 function chgrp($file,$group,$recursive=false){ 183 187 return false; … … 326 330 function is_dir($path){ 327 331 $cwd = $this->cwd(); 328 if ( $this-> ftp->chdir($path) ) {329 $this-> ftp->chdir($cwd);332 if ( $this->chdir($path) ) { 333 $this->chdir($cwd); 330 334 return true; 331 335 }
Note: See TracChangeset
for help on using the changeset viewer.