Escape the output in wp_ajax_upload_attachment()
.
Merges [45936] to the 4.7 branch. Props whyisjake, sstoqnov. git-svn-id: https://develop.svn.wordpress.org/branches/4.7@45947 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
7cb146f92a
commit
8fcbf67732
@ -32,7 +32,7 @@ if ( ! ( isset( $_REQUEST['action'] ) && 'upload-attachment' == $_REQUEST['actio
|
|||||||
|
|
||||||
require_once( ABSPATH . 'wp-admin/admin.php' );
|
require_once( ABSPATH . 'wp-admin/admin.php' );
|
||||||
|
|
||||||
header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) );
|
header( 'Content-Type: text/plain; charset=' . get_option( 'blog_charset' ) );
|
||||||
|
|
||||||
if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) {
|
if ( isset( $_REQUEST['action'] ) && 'upload-attachment' === $_REQUEST['action'] ) {
|
||||||
include( ABSPATH . 'wp-admin/includes/ajax-actions.php' );
|
include( ABSPATH . 'wp-admin/includes/ajax-actions.php' );
|
||||||
|
@ -2008,7 +2008,7 @@ function wp_ajax_upload_attachment() {
|
|||||||
'success' => false,
|
'success' => false,
|
||||||
'data' => array(
|
'data' => array(
|
||||||
'message' => __( 'Sorry, you are not allowed to upload files.' ),
|
'message' => __( 'Sorry, you are not allowed to upload files.' ),
|
||||||
'filename' => $_FILES['async-upload']['name'],
|
'filename' => esc_html( $_FILES['async-upload']['name'] ),
|
||||||
)
|
)
|
||||||
) );
|
) );
|
||||||
|
|
||||||
@ -2022,7 +2022,7 @@ function wp_ajax_upload_attachment() {
|
|||||||
'success' => false,
|
'success' => false,
|
||||||
'data' => array(
|
'data' => array(
|
||||||
'message' => __( 'Sorry, you are not allowed to attach files to this post.' ),
|
'message' => __( 'Sorry, you are not allowed to attach files to this post.' ),
|
||||||
'filename' => $_FILES['async-upload']['name'],
|
'filename' => esc_html( $_FILES['async-upload']['name'] ),
|
||||||
)
|
)
|
||||||
) );
|
) );
|
||||||
|
|
||||||
@ -2046,7 +2046,7 @@ function wp_ajax_upload_attachment() {
|
|||||||
'success' => false,
|
'success' => false,
|
||||||
'data' => array(
|
'data' => 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.' ),
|
||||||
'filename' => $_FILES['async-upload']['name'],
|
'filename' => esc_html( $_FILES['async-upload']['name'] ),
|
||||||
)
|
)
|
||||||
) );
|
) );
|
||||||
|
|
||||||
@ -2061,7 +2061,7 @@ function wp_ajax_upload_attachment() {
|
|||||||
'success' => false,
|
'success' => false,
|
||||||
'data' => array(
|
'data' => array(
|
||||||
'message' => $attachment_id->get_error_message(),
|
'message' => $attachment_id->get_error_message(),
|
||||||
'filename' => $_FILES['async-upload']['name'],
|
'filename' => esc_html( $_FILES['async-upload']['name'] ),
|
||||||
)
|
)
|
||||||
) );
|
) );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user