Script Loader: Prevent wp_localize_script()
warnings.
Prevent `wp_localize_script()` (via `WP_Scripts::localize()`) throwing warnings in PHP 8 when the translation data is passed as a string. This maintains backward compatibility with earlier versions of PHP. Introduce a `_doing_it_wrong()` notice to `WP_Scripts::localize()` if the translation data is not passed as an array. Props jrf, peterwilsoncc, SergeyBiryukov. Fixes #52534. Built from https://develop.svn.wordpress.org/trunk@50408 git-svn-id: http://core.svn.wordpress.org/trunk@50019 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ddca2ed164
commit
032aec8df2
@ -484,12 +484,29 @@ class WP_Scripts extends WP_Dependencies {
|
|||||||
unset( $l10n['l10n_print_after'] );
|
unset( $l10n['l10n_print_after'] );
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ( (array) $l10n as $key => $value ) {
|
if ( ! is_array( $l10n ) ) {
|
||||||
if ( ! is_scalar( $value ) ) {
|
_doing_it_wrong(
|
||||||
continue;
|
__METHOD__,
|
||||||
}
|
sprintf(
|
||||||
|
/* translators: 1: $l10n, 2: wp_add_inline_script() */
|
||||||
|
__( 'The %1$s parameter must be an array. To pass arbitrary data to scripts, use the %2$s function instead.' ),
|
||||||
|
'<code>$l10n</code>',
|
||||||
|
'<code>wp_add_inline_script()</code>'
|
||||||
|
),
|
||||||
|
'5.7.0'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
$l10n[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
|
if ( is_string( $l10n ) ) {
|
||||||
|
$l10n = html_entity_decode( $l10n, ENT_QUOTES, 'UTF-8' );
|
||||||
|
} else {
|
||||||
|
foreach ( (array) $l10n as $key => $value ) {
|
||||||
|
if ( ! is_scalar( $value ) ) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
$l10n[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$script = "var $object_name = " . wp_json_encode( $l10n ) . ';';
|
$script = "var $object_name = " . wp_json_encode( $l10n ) . ';';
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.7-beta3-50407';
|
$wp_version = '5.7-beta3-50408';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user