diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php
index a06f9228aae..d8c23ccec4c 100644
a
|
b
|
function do_settings_sections( $page ) { |
1605 | 1605 | if ( ! isset( $wp_settings_fields ) || ! isset( $wp_settings_fields[ $page ] ) || ! isset( $wp_settings_fields[ $page ][ $section['id'] ] ) ) { |
1606 | 1606 | continue; |
1607 | 1607 | } |
1608 | | echo '<table class="form-table">'; |
| 1608 | echo '<table class="form-table" role="presentation">'; |
1609 | 1609 | do_settings_fields( $page, $section['id'] ); |
1610 | 1610 | echo '</table>'; |
1611 | 1611 | } |