Twenty Twenty-One: Add missing escaping for the "Secondary menu" label.

Props muhammadfaizanhaidar, teucrium, sabernhardt, mukesh27, SergeyBiryukov.
Fixes #54127.
Built from https://develop.svn.wordpress.org/trunk@51820


git-svn-id: http://core.svn.wordpress.org/trunk@51427 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-09-16 21:32:00 +00:00
parent 5932bb0f8e
commit 8feb26bcfe
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ if ( ! function_exists( 'twenty_twenty_one_setup' ) ) {
register_nav_menus( register_nav_menus(
array( array(
'primary' => esc_html__( 'Primary menu', 'twentytwentyone' ), 'primary' => esc_html__( 'Primary menu', 'twentytwentyone' ),
'footer' => __( 'Secondary menu', 'twentytwentyone' ), 'footer' => esc_html__( 'Secondary menu', 'twentytwentyone' ),
) )
); );

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.9-alpha-51819'; $wp_version = '5.9-alpha-51820';
/** /**
* 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.