mirror of
git://develop.git.wordpress.org/
synced 2025-03-24 05:49:49 +01:00
Customize: Properly escape URLs passed by url
and return
parameters.
This changeset replaces `sanitize_text_field()` with `esc_url_raw()` for URLs passed via `url` and `return` query vars. This fixes an issue where the URL `example.com/หน้าภาษาไทย` would incorrectly return `example.com//` due to improper sanitization when clicking on the Customize button through the admin bar. Props okvee, yahaly, hellofromTonya, veryard, dilip2615, amin7, swissspidy, audrasjb. Fixes #61317. git-svn-id: https://develop.svn.wordpress.org/trunk@59945 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
c7e01a4827
commit
a68196ee03
@ -84,8 +84,8 @@ if ( $wp_customize->changeset_post_id() ) {
|
||||
}
|
||||
}
|
||||
|
||||
$url = ! empty( $_REQUEST['url'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['url'] ) ) : '';
|
||||
$return = ! empty( $_REQUEST['return'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['return'] ) ) : '';
|
||||
$url = ! empty( $_REQUEST['url'] ) ? esc_url_raw( wp_unslash( $_REQUEST['url'] ) ) : '';
|
||||
$return = ! empty( $_REQUEST['return'] ) ? esc_url_raw( wp_unslash( $_REQUEST['return'] ) ) : '';
|
||||
$autofocus = ! empty( $_REQUEST['autofocus'] ) && is_array( $_REQUEST['autofocus'] )
|
||||
? array_map( 'sanitize_text_field', wp_unslash( $_REQUEST['autofocus'] ) )
|
||||
: array();
|
||||
|
Loading…
x
Reference in New Issue
Block a user