- Timestamp:
- 02/07/2010 01:31:40 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-filesystem-ftpsockets.php
r12997 r12998 155 155 156 156 function chmod($file, $mode = false, $recursive = false ) { 157 158 157 if ( ! $mode ) { 159 158 if ( $this->is_file($file) ) … … 278 277 279 278 function rmdir($path, $recursive = false ) { 280 if ( ! $recursive ) 281 return $this->ftp->rmdir($path); 282 283 return $this->ftp->mdel($path); 279 $this->delete($path, $recursive); 284 280 } 285 281
Note: See TracChangeset
for help on using the changeset viewer.