From 857d34590a14c2dd71942f16ac8737fdd12b118f Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Wed, 22 Jul 2020 18:50:30 +0000 Subject: [PATCH] General: Rename `remove_option_allowed_list()` to `remove_allowed_options()`. This was missed in [48142] which renamed `add_option_allowed_list()` to `add_allowed_options()` for better readability. The two functions should have consistent names. See #50413. git-svn-id: https://develop.svn.wordpress.org/trunk@48566 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/plugin.php | 2 +- src/wp-includes/deprecated.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/wp-admin/includes/plugin.php b/src/wp-admin/includes/plugin.php index 05bd0c60f1..43966ab6f8 100644 --- a/src/wp-admin/includes/plugin.php +++ b/src/wp-admin/includes/plugin.php @@ -2231,7 +2231,7 @@ function add_allowed_options( $new_options, $options = '' ) { * @param string|array $options * @return array */ -function remove_option_allowed_list( $del_options, $options = '' ) { +function remove_allowed_options( $del_options, $options = '' ) { if ( '' === $options ) { global $allowed_options; } else { diff --git a/src/wp-includes/deprecated.php b/src/wp-includes/deprecated.php index 43450e8d4a..5cae9d514a 100644 --- a/src/wp-includes/deprecated.php +++ b/src/wp-includes/deprecated.php @@ -4086,7 +4086,7 @@ function add_option_whitelist( $new_options, $options = '' ) { * Removes a list of options from the allowed options list. * * @since 2.7.0 - * @deprecated 5.5.0 Use remove_option_allowed_list() instead. + * @deprecated 5.5.0 Use remove_allowed_options() instead. * Please consider writing more inclusive code. * * @global array $allowed_options @@ -4096,7 +4096,7 @@ function add_option_whitelist( $new_options, $options = '' ) { * @return array */ function remove_option_whitelist( $del_options, $options = '' ) { - _deprecated_function( __FUNCTION__, '5.5.0', 'remove_option_allowed_list()' ); + _deprecated_function( __FUNCTION__, '5.5.0', 'remove_allowed_options()' ); - return remove_option_allowed_list( $del_options, $options ); + return remove_allowed_options( $del_options, $options ); }