From 64a499ab92b794e96376c7bd133db315b62d28a9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 19 Jan 2024 18:26:11 +0000 Subject: [PATCH] Twenty Twenty: Add missing comma in `twentytwenty_classic_editor_styles()`. This resolves a WPCS error: {{{ There should be a comma after the last array item in a multi-line array. }}} Follow-up to [57311]. See #48630. Built from https://develop.svn.wordpress.org/trunk@57313 git-svn-id: http://core.svn.wordpress.org/trunk@56819 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwenty/functions.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentytwenty/functions.php b/wp-content/themes/twentytwenty/functions.php index 549191f12d..2ce8fffb77 100644 --- a/wp-content/themes/twentytwenty/functions.php +++ b/wp-content/themes/twentytwenty/functions.php @@ -461,7 +461,7 @@ function twentytwenty_classic_editor_styles() { $classic_editor_styles = array( '/assets/css/editor-style-classic.css', - '/assets/css/font-inter.css' + '/assets/css/font-inter.css', ); add_editor_style( $classic_editor_styles ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 205deb7271..087ee4b187 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.5-alpha-57312'; +$wp_version = '6.5-alpha-57313'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.