From 7821fe08db45080f72a87e960dfecb451ea9396a Mon Sep 17 00:00:00 2001 From: audrasjb Date: Tue, 7 Jun 2022 05:30:13 +0000 Subject: [PATCH] Text Changes: Improve consistency of admin error notices in `wp-admin/options.php`. This changeset replaces Error: with Error:, for better consistency. Follow-up to [53458]. Fixes #50785. Built from https://develop.svn.wordpress.org/trunk@53476 git-svn-id: http://core.svn.wordpress.org/trunk@53065 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/options.php b/wp-admin/options.php index d63b10eb4f..4e6ecbeb64 100644 --- a/wp-admin/options.php +++ b/wp-admin/options.php @@ -245,7 +245,7 @@ if ( 'update' === $action ) { // We are saving settings sent from a settings pag wp_die( sprintf( /* translators: %s: The options page name. */ - __( 'Error: Options page %s not found in the allowed options list.' ), + __( 'Error: Options page %s not found in the allowed options list.' ), '' . esc_html( $option_page ) . '' ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 2a2975e549..fb8af9581f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53475'; +$wp_version = '6.1-alpha-53476'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.