From 26c0800c4625e1668bf91f97319abebb9ad6bd8f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 4 Sep 2021 00:37:21 +0000 Subject: [PATCH] Docs: Fix typo in a comment in `WP_Customize_Manager::get_return_url()`. Follow-up to [46754]. See #53399. git-svn-id: https://develop.svn.wordpress.org/trunk@51730 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index 25660393a0..b0da2b0a84 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/wp-includes/class-wp-customize-manager.php @@ -4688,7 +4688,7 @@ final class WP_Customize_Manager { /* * If the return URL is a page added by a theme to the Appearance menu via add_submenu_page(), - * verify that belongs to the active theme, otherwise fall back to the Themes screen. + * verify that it belongs to the active theme, otherwise fall back to the Themes screen. */ if ( isset( $query_vars['page'] ) && ! isset( $_registered_pages[ "appearance_page_{$query_vars['page']}" ] ) ) { $return_url = admin_url( 'themes.php' );