--- a/wp/wp-admin/site-health-info.php Fri Sep 05 18:40:08 2025 +0200
+++ b/wp/wp-admin/site-health-info.php Fri Sep 05 18:52:52 2025 +0200
@@ -108,7 +108,7 @@
}
?>
- <table class="widefat striped health-check-table" role="presentation">
+ <table class="widefat striped health-check-table">
<tbody>
<?php
@@ -126,9 +126,9 @@
}
if ( in_array( $field_name, $sizes_fields, true ) ) {
- printf( '<tr><td>%s</td><td class="%s">%s</td></tr>', esc_html( $field['label'] ), esc_attr( $field_name ), $values );
+ printf( '<tr><th scope="row">%s</th><td class="%s">%s</td></tr>', esc_html( $field['label'] ), esc_attr( $field_name ), $values );
} else {
- printf( '<tr><td>%s</td><td>%s</td></tr>', esc_html( $field['label'] ), $values );
+ printf( '<tr><th scope="row">%s</th><td>%s</td></tr>', esc_html( $field['label'] ), $values );
}
}