Changeset 7895
- Timestamp:
- 05/05/08 17:06:29 (7 months ago)
- Files:
-
- trunk/wp-admin/includes/file.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-admin/includes/file.php
r7840 r7895 314 314 315 315 $method = get_filesystem_method(); 316 316 317 if ( ! $method ) 317 318 return false; 318 319 319 require_once('class-wp-filesystem-'.$method.'.php'); 320 $abstraction_file = apply_filters('filesystem_method_file', ABSPATH . 'wp-admin/includes/class-wp-filesystem-'.$method.'.php', $method); 321 if( ! file_exists($abstraction_file) ) 322 return; 323 324 require_once($abstraction_file); 320 325 $method = "WP_Filesystem_$method"; 321 326
