From 8a2bbf777aec69892bab966c77ba47ae104b7f07 Mon Sep 17 00:00:00 2001 From: desrosj Date: Fri, 13 Sep 2019 18:55:56 +0000 Subject: [PATCH] Correct the version number specified in [46102]. See #45361. Built from https://develop.svn.wordpress.org/trunk@46104 git-svn-id: http://core.svn.wordpress.org/trunk@45916 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/nav-menu.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/nav-menu.php b/wp-includes/nav-menu.php index b618f96e9b..b9a603f8d6 100644 --- a/wp-includes/nav-menu.php +++ b/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; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 05fca57e00..9b60bef40b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-46103'; +$wp_version = '5.3-alpha-46104'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.