mirror of
git://develop.git.wordpress.org/
synced 2025-04-04 12:12:41 +02:00
Script Loader: Fix a variable typo in wp_enqueue_block_style
.
In `wp_enqueue_block_style` when `rtl` versions of CSS files are detected, `wp_style_add_data` is called to add the metadata to the registered sheet. However, the stylesheet `handle` argument is misspelled as `hanle`. This change corrects the argument name. Props omaeyusuke. Fixes #54786. git-svn-id: https://develop.svn.wordpress.org/trunk@52558 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1e7d559444
commit
f44030b140
@ -1238,7 +1238,7 @@ function wp_enqueue_block_style( $block_name, $args ) {
|
||||
|
||||
// Add RTL stylesheet.
|
||||
if ( file_exists( $rtl_file_path ) ) {
|
||||
wp_style_add_data( $args['hanle'], 'rtl', 'replace' );
|
||||
wp_style_add_data( $args['handle'], 'rtl', 'replace' );
|
||||
|
||||
if ( is_rtl() ) {
|
||||
wp_style_add_data( $args['handle'], 'path', $rtl_file_path );
|
||||
|
Loading…
x
Reference in New Issue
Block a user