In `wp_ajax_upload_attachment()`, `wp_check_filetype_and_ext()` doesn't need a 3rd param - it already defaults to `null`. Passing `false` would fail a strict check
See #30799. Built from https://develop.svn.wordpress.org/trunk@31119 git-svn-id: http://core.svn.wordpress.org/trunk@31100 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3324fb71f6
commit
afd09f1f04
|
@ -1858,7 +1858,7 @@ function wp_ajax_upload_attachment() {
|
||||||
|
|
||||||
// If the context is custom header or background, make sure the uploaded file is an image.
|
// If the context is custom header or background, make sure the uploaded file is an image.
|
||||||
if ( isset( $post_data['context'] ) && in_array( $post_data['context'], array( 'custom-header', 'custom-background' ) ) ) {
|
if ( isset( $post_data['context'] ) && in_array( $post_data['context'], array( 'custom-header', 'custom-background' ) ) ) {
|
||||||
$wp_filetype = wp_check_filetype_and_ext( $_FILES['async-upload']['tmp_name'], $_FILES['async-upload']['name'], false );
|
$wp_filetype = wp_check_filetype_and_ext( $_FILES['async-upload']['tmp_name'], $_FILES['async-upload']['name'] );
|
||||||
if ( ! wp_match_mime_types( 'image', $wp_filetype['type'] ) ) {
|
if ( ! wp_match_mime_types( 'image', $wp_filetype['type'] ) ) {
|
||||||
wp_send_json_error( array(
|
wp_send_json_error( array(
|
||||||
'message' => __( 'The uploaded file is not a valid image. Please try again.' ),
|
'message' => __( 'The uploaded file is not a valid image. Please try again.' ),
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-alpha-31118';
|
$wp_version = '4.2-alpha-31119';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue