Issue #901128 by dawehner, mgifford: add additional headers to Views UI for screen readers.

8.0.x
Dries 2013-02-18 09:14:10 -05:00
parent 2fcadb11fa
commit dc84d97268
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ function template_preprocess_views_ui_view_info(&$variables) {
*/
function theme_views_ui_view_info($variables) {
$output = '';
$output .= '<div class="views-ui-view-title">' . $variables['title'] . "</div>\n";
$output .= '<h3 class="views-ui-view-title">' . $variables['title'] . "</h3>\n";
$output .= '<div class="views-ui-view-displays">' . $variables['displays'] . "</div>\n";
return $output;
}