From 84f0321f42f9c776c15f020fb3a17ae850185bd5 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 1 Feb 2020 22:40:06 +0000 Subject: [PATCH] Administration: Include options page name in the "Options page not found" error message to provide better context for plugin developers. Props tdlewis77, williampatton. Fixes #42941. git-svn-id: https://develop.svn.wordpress.org/trunk@47158 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/options.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/options.php b/src/wp-admin/options.php index 012164326c..2d7eddd632 100644 --- a/src/wp-admin/options.php +++ b/src/wp-admin/options.php @@ -200,7 +200,7 @@ if ( ! is_multisite() ) { * * @since 2.7.0 * - * @param array $whitelist_options Whitelist options. + * @param array $whitelist_options The options whitelist. */ $whitelist_options = apply_filters( 'whitelist_options', $whitelist_options ); @@ -217,7 +217,13 @@ if ( 'update' == $action ) { } if ( ! isset( $whitelist_options[ $option_page ] ) ) { - wp_die( __( 'Error: Options page not found.' ) ); + wp_die( + sprintf( + /* translators: %s: The options page name. */ + __( 'Error: Options page %s not found in the options whitelist.' ), + '' . esc_html( $option_page ) . '' + ) + ); } if ( 'options' == $option_page ) { @@ -268,7 +274,7 @@ if ( 'update' == $action ) { sprintf( /* translators: %s: The option/setting. */ __( 'The %s setting is unregistered. Unregistered settings are deprecated. See https://developer.wordpress.org/plugins/settings/settings-api/' ), - '' . $option . '' + '' . esc_html( $option ) . '' ) ); }