Coding Standards: Use strict comparison in `wp-includes/class-wp-customize-nav-menus.php`.
See #52627. Built from https://develop.svn.wordpress.org/trunk@51047 git-svn-id: http://core.svn.wordpress.org/trunk@50656 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fedbeb2f3c
commit
5232f2be96
|
@ -488,6 +488,7 @@ final class WP_Customize_Nav_Menus {
|
|||
$temp_nav_menu_item_setting = new WP_Customize_Nav_Menu_Item_Setting( $this->manager, 'nav_menu_item[-1]' );
|
||||
|
||||
$num_locations = count( get_registered_nav_menus() );
|
||||
|
||||
if ( 1 === $num_locations ) {
|
||||
$locations_description = __( 'Your theme can display menus in one location.' );
|
||||
} else {
|
||||
|
@ -679,7 +680,8 @@ final class WP_Customize_Nav_Menus {
|
|||
// Menu locations.
|
||||
$locations = get_registered_nav_menus();
|
||||
$num_locations = count( $locations );
|
||||
if ( 1 == $num_locations ) {
|
||||
|
||||
if ( 1 === $num_locations ) {
|
||||
$description = '<p>' . __( 'Your theme can display menus in one location. Select which menu you would like to use.' ) . '</p>';
|
||||
} else {
|
||||
/* translators: %s: Number of menu locations. */
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.8-alpha-51046';
|
||||
$wp_version = '5.8-alpha-51047';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue