From d1058355a587a3caf7d37eab23f23dfce93d1673 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 10 Dec 2024 23:22:16 +0000 Subject: [PATCH] Twenty Twenty-Two: Fix PHPCS issues in `functions.php`. * Inline comments must end in full stops, exclamation marks, or question marks. * There must be exactly one blank line after the file comment. Follow-up to [52081]. Props pitamdey, mukesh27. Fixes #62648. Built from https://develop.svn.wordpress.org/trunk@59504 git-svn-id: http://core.svn.wordpress.org/trunk@58890 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwentytwo/functions.php | 3 +-- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentytwentytwo/functions.php b/wp-content/themes/twentytwentytwo/functions.php index cd994beec7..8f93dcfc5f 100644 --- a/wp-content/themes/twentytwentytwo/functions.php +++ b/wp-content/themes/twentytwentytwo/functions.php @@ -9,7 +9,6 @@ * @since Twenty Twenty-Two 1.0 */ - if ( ! function_exists( 'twentytwentytwo_support' ) ) : /** @@ -61,5 +60,5 @@ endif; add_action( 'wp_enqueue_scripts', 'twentytwentytwo_styles' ); -// Add block patterns +// Add block patterns. require get_template_directory() . '/inc/block-patterns.php'; diff --git a/wp-includes/version.php b/wp-includes/version.php index de47056643..225dbe240e 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.8-alpha-59503'; +$wp_version = '6.8-alpha-59504'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.