We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e83641c commit 533532bCopy full SHA for 533532b
includes/wp-admin/class-welcome-fields.php
@@ -224,7 +224,7 @@ public static function render_step_plugin_installed() {
224
*/
225
public static function render_step_site_health() {
226
$health_issues = Health_Check::count_results();
227
- $total_issues = $health_issues['critical'] + $health_issues['warning'];
+ $total_issues = $health_issues['critical'] + $health_issues['recommended'];
228
$checked = '0' === \get_option( 'activitypub_checklist_health_check_issues', (string) $health_issues['critical'] );
229
$step_class = $checked ? 'activitypub-step-completed' : '';
230
$next_step = self::get_next_incomplete_step();
0 commit comments