diff --git a/wp-admin/comment.php b/wp-admin/comment.php index ef2d1d628e..bdd326ecf1 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -38,7 +38,7 @@ if ( isset( $_GET['dt'] ) ) { // Prevent actions on a comment associated with a trashed post. $comment_id = absint( $_GET['c'] ); -$comment = get_comment( $comment_id ); +$comment = get_comment( $comment_id ); if ( 'trash' === get_post_status( $comment->comment_post_ID ) ) { wp_die( diff --git a/wp-admin/nav-menus.php b/wp-admin/nav-menus.php index b9aee875f1..24fc03a31b 100644 --- a/wp-admin/nav-menus.php +++ b/wp-admin/nav-menus.php @@ -358,7 +358,7 @@ switch ( $action ) { $messages[] = '<div id="message" class="error notice is-dismissible"><p>' . __( 'Please enter a valid menu name.' ) . '</p></div>'; } - // Update existing menu. + // Update existing menu. } else { // Remove menu locations that have been unchecked. foreach ( $locations as $location => $description ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index b73b898a8f..9f3a878467 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-48051'; +$wp_version = '5.5-alpha-48052'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.