From 54514a5451888acbe2b78f884d332ad51a40a76e Mon Sep 17 00:00:00 2001 From: audrasjb Date: Sat, 5 Feb 2022 08:00:05 +0000 Subject: [PATCH] Twenty Twenty-Two: Fix headings consistency in Pricing table pattern. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change fixes a consistency issue where "Pigeon" was a h3, while "Sparrow" and "Falcon" were h2. Let's treat these birds equally 🐦 Props kjellr, jffng. Fixes #54929. Built from https://develop.svn.wordpress.org/trunk@52681 git-svn-id: http://core.svn.wordpress.org/trunk@52270 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../inc/patterns/general-pricing-table.php | 8 ++++---- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php b/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php index f9898a7351..b385eddf25 100644 --- a/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php +++ b/wp-content/themes/twentytwentytwo/inc/patterns/general-pricing-table.php @@ -43,8 +43,8 @@ return array(

' . esc_html( _x( '2', 'Second item in a numbered list.', 'twentytwentytwo' ) ) . '

- -

' . esc_html__( 'Sparrow', 'twentytwentytwo' ) . '

+ +

' . esc_html__( 'Sparrow', 'twentytwentytwo' ) . '

@@ -71,8 +71,8 @@ return array(

' . esc_html( _x( '3', 'Third item in a numbered list.', 'twentytwentytwo' ) ) . '

- -

' . esc_html__( 'Falcon', 'twentytwentytwo' ) . '

+ +

' . esc_html__( 'Falcon', 'twentytwentytwo' ) . '

diff --git a/wp-includes/version.php b/wp-includes/version.php index 0a9349f71a..d71480489a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52680'; +$wp_version = '6.0-alpha-52681'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.