From 53ec5e3fbf669016febc9fc6685674bd2b2bce8d Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Fri, 13 Sep 2019 18:54:06 +0000 Subject: [PATCH] Correct the version number specified in [46102]. See #45361. git-svn-id: https://develop.svn.wordpress.org/trunk@46104 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/nav-menu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/nav-menu.php b/src/wp-includes/nav-menu.php index b618f96e9b..b9a603f8d6 100644 --- a/src/wp-includes/nav-menu.php +++ b/src/wp-includes/nav-menu.php @@ -94,7 +94,7 @@ function register_nav_menus( $locations = array() ) { foreach ( $locations as $key => $value ) { if ( is_int( $key ) ) { - _doing_it_wrong( __FUNCTION__, __( 'Nav menu locations must be strings.' ), '5.3' ); + _doing_it_wrong( __FUNCTION__, __( 'Nav menu locations must be strings.' ), '5.3.0' ); break; } }