Changeset 9663
- Timestamp:
- 11/13/2008 06:22:00 PM (16 years ago)
- Location:
- trunk/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/file.php
r9612 r9663 214 214 * @return array On success, returns an associative array of file attributes. On failure, returns $overrides['upload_error_handler'](&$file, $message ) or array( 'error'=>$message ). 215 215 */ 216 function wp_handle_upload( &$file, $overrides = false ) {216 function wp_handle_upload( &$file, $overrides = false, $time = null ) { 217 217 // The default error handler. 218 218 if (! function_exists( 'wp_handle_upload_error' ) ) { … … 282 282 283 283 // A writable uploads dir will pass this test. Again, there's no point overriding this one. 284 if ( ! ( ( $uploads = wp_upload_dir( ) ) && false === $uploads['error'] ) )284 if ( ! ( ( $uploads = wp_upload_dir($time) ) && false === $uploads['error'] ) ) 285 285 return $upload_error_handler( $file, $uploads['error'] ); 286 286 -
trunk/wp-admin/includes/media.php
r9654 r9663 174 174 function media_handle_upload($file_id, $post_id, $post_data = array()) { 175 175 $overrides = array('test_form'=>false); 176 $file = wp_handle_upload($_FILES[$file_id], $overrides); 176 177 $post = get_post($post_id); 178 $time = $post->post_date_gmt; 179 180 $file = wp_handle_upload($_FILES[$file_id], $overrides, $time); 177 181 178 182 if ( isset($file['error']) )
Note: See TracChangeset
for help on using the changeset viewer.