From 1373b2056d141479d6df180800a54afae2a1da50 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 22 Jul 2020 00:29:03 +0000 Subject: [PATCH] Docs: Correct type for the `$theme` parameter of `theme_auto_update_debug_string` filter. Follow-up to [48546], [48549], [48552]. See #50663. Built from https://develop.svn.wordpress.org/trunk@48561 git-svn-id: http://core.svn.wordpress.org/trunk@48323 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-debug-data.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/class-wp-debug-data.php b/wp-admin/includes/class-wp-debug-data.php index 743a4e4948..82a5b068c9 100644 --- a/wp-admin/includes/class-wp-debug-data.php +++ b/wp-admin/includes/class-wp-debug-data.php @@ -1078,9 +1078,9 @@ class WP_Debug_Data { * * @since 5.5.0 * - * @param string $auto_updates_string The string output for the auto-updates column. - * @param object $theme An object of theme data. - * @param bool $enabled Whether auto-updates are enabled for this item. + * @param string $auto_updates_string The string output for the auto-updates column. + * @param WP_Theme $theme An object of theme data. + * @param bool $enabled Whether auto-updates are enabled for this item. */ $auto_updates_string = apply_filters( 'theme_auto_update_debug_string', $auto_updates_string, $active_theme, $enabled ); } else { diff --git a/wp-includes/version.php b/wp-includes/version.php index 76a6405b68..b0af568939 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-beta3-48560'; +$wp_version = '5.5-beta3-48561'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.