From f091afc696d520f5f696df8fff2f18ff889c6f11 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 14 Jul 2024 03:47:16 +0000 Subject: [PATCH] Site Health: Correctly display auto-update status for parent theme. Follow-up to [47835], [48731]. Props apermo. Fixes #61649. See #61648. Built from https://develop.svn.wordpress.org/trunk@58716 git-svn-id: http://core.svn.wordpress.org/trunk@58118 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-debug-data.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-debug-data.php b/wp-admin/includes/class-wp-debug-data.php index 2d6fb418d6..109e38b063 100644 --- a/wp-admin/includes/class-wp-debug-data.php +++ b/wp-admin/includes/class-wp-debug-data.php @@ -1299,7 +1299,7 @@ class WP_Debug_Data { } /** This filter is documented in wp-admin/includes/class-wp-debug-data.php */ - $parent_theme_auto_update_string = apply_filters( 'theme_auto_update_debug_string', $auto_updates_string, $parent_theme, $enabled ); + $parent_theme_auto_update_string = apply_filters( 'theme_auto_update_debug_string', $parent_theme_auto_update_string, $parent_theme, $enabled ); $info['wp-parent-theme']['fields']['auto_update'] = array( 'label' => __( 'Auto-update' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 7c4f27e1b8..ef86314d22 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58715'; +$wp_version = '6.7-alpha-58716'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.