diff --git a/wp-admin/includes/ms.php b/wp-admin/includes/ms.php index 5cfe1f43b5..7796745a2e 100644 --- a/wp-admin/includes/ms.php +++ b/wp-admin/includes/ms.php @@ -1018,6 +1018,8 @@ jQuery(document).ready( function($) { * * @since 4.6.0 * + * @global string $pagenow + * * @param array $args { * Optional. Array or string of Query parameters. Default empty array. * diff --git a/wp-admin/includes/plugin.php b/wp-admin/includes/plugin.php index 18a4852e47..5779ff4a3f 100644 --- a/wp-admin/includes/plugin.php +++ b/wp-admin/includes/plugin.php @@ -2463,6 +2463,8 @@ function resume_plugin( $plugin, $redirect = '' ) { * Renders an admin notice in case some plugins have been paused due to errors. * * @since 5.2.0 + * + * @global string $pagenow */ function paused_plugins_notice() { if ( 'plugins.php' === $GLOBALS['pagenow'] ) { diff --git a/wp-admin/includes/theme.php b/wp-admin/includes/theme.php index f11a6fc234..224021ad37 100644 --- a/wp-admin/includes/theme.php +++ b/wp-admin/includes/theme.php @@ -1127,6 +1127,8 @@ function resume_theme( $theme, $redirect = '' ) { * Renders an admin notice in case some themes have been paused due to errors. * * @since 5.2.0 + * + * @global string $pagenow */ function paused_themes_notice() { if ( 'themes.php' === $GLOBALS['pagenow'] ) { diff --git a/wp-includes/class-wp-recovery-mode-link-service.php b/wp-includes/class-wp-recovery-mode-link-service.php index 7e7db7a1e0..c25b572b76 100644 --- a/wp-includes/class-wp-recovery-mode-link-service.php +++ b/wp-includes/class-wp-recovery-mode-link-service.php @@ -65,6 +65,8 @@ class WP_Recovery_Mode_Link_Service { * * @since 5.2.0 * + * @global string $pagenow + * * @param int $ttl Number of seconds the link should be valid for. */ public function handle_begin_link( $ttl ) { diff --git a/wp-includes/load.php b/wp-includes/load.php index 897e018ab3..be5a8fcda7 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -938,6 +938,8 @@ function wp_is_recovery_mode() { * * @since 5.2.0 * + * @global string $pagenow + * * @return bool True if the current endpoint should be protected. */ function is_protected_endpoint() { diff --git a/wp-includes/version.php b/wp-includes/version.php index 5677110ba3..38d737fa55 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.7-beta3-50406'; +$wp_version = '5.7-beta3-50407'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.