From 73bd837100ffdbe779277287532dc1dc352df6f0 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Thu, 1 Dec 2022 22:20:12 +0000 Subject: [PATCH] Options, Meta APIs: Improve error messages in Options Management Administration Screen. Props NekoJonez, costdev. Fixes #57230. Built from https://develop.svn.wordpress.org/trunk@54926 git-svn-id: http://core.svn.wordpress.org/trunk@54478 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 400a7b69ae..a1229ef8fd 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: The %s options page is not in the allowed options list.' ), '' . esc_html( $option_page ) . '' ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 9bfe237da2..4482b26620 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54925'; +$wp_version = '6.2-alpha-54926'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.