From ed511681a8236ec95a6ffd5d4c9375eae72b349c Mon Sep 17 00:00:00 2001 From: joedolson Date: Tue, 7 Feb 2023 18:52:18 +0000 Subject: [PATCH] Administration: Match title tag to menu item for Editor. Removes 'beta' from the title element for the site editor. Follow up to [55281]. Props kebbet. Fixes #57654. Built from https://develop.svn.wordpress.org/trunk@55288 git-svn-id: http://core.svn.wordpress.org/trunk@54821 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/site-editor.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/site-editor.php b/wp-admin/site-editor.php index 016245a677..23d44d7ea2 100644 --- a/wp-admin/site-editor.php +++ b/wp-admin/site-editor.php @@ -46,7 +46,7 @@ if ( $home_template && empty( $_GET['postType'] ) && empty( $_GET['postId'] ) ) } // Used in the HTML title tag. -$title = __( 'Editor (beta)' ); +$title = _x( 'Editor', 'site editor title tag' ); $parent_file = 'themes.php'; // Flag that we're loading the block editor. diff --git a/wp-includes/version.php b/wp-includes/version.php index c8e1282915..995c2adbe5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55287'; +$wp_version = '6.2-alpha-55288'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.