Fix uploads sub-directory for drafts, props DD32, fixes #8205

git-svn-id: http://svn.automattic.com/wordpress/trunk@9675 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2008-11-14 03:26:06 +00:00
parent 6adb94fd45
commit d87ff92c67
1 changed files with 6 additions and 3 deletions

View File

@ -173,9 +173,12 @@ win.send_to_editor('<?php echo addslashes($html); ?>');
*/
function media_handle_upload($file_id, $post_id, $post_data = array()) {
$overrides = array('test_form'=>false);
$post = get_post($post_id);
$time = $post->post_date_gmt;
$time = current_time('mysql', true);
if ( $post = get_post($post_id) ) {
if ( substr( $post->post_date, 0, 4 ) > 0 )
$time = $post->post_date;
}
$file = wp_handle_upload($_FILES[$file_id], $overrides, $time);