diff --git a/wp-admin/media-new.php b/wp-admin/media-new.php index c8263d8ac9..9d26651e85 100644 --- a/wp-admin/media-new.php +++ b/wp-admin/media-new.php @@ -25,15 +25,15 @@ if ( isset( $_REQUEST['post_id'] ) ) { } if ( $_POST ) { - $location = 'upload.php'; if ( isset($_POST['html-upload']) && !empty($_FILES) ) { check_admin_referer('media-form'); // Upload File button was clicked - $id = media_handle_upload( 'async-upload', $post_id ); - if ( is_wp_error( $id ) ) - $location .= '?message=3'; + $upload_id = media_handle_upload( 'async-upload', $post_id ); + if ( is_wp_error( $upload_id ) ) { + wp_die( $upload_id ); + } } - wp_redirect( admin_url( $location ) ); + wp_redirect( admin_url( 'upload.php' ) ); exit; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 580e653a01..cc3ad17e39 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34001'; +$wp_version = '4.4-alpha-34002'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.