Skip to content

Commit 4367ce6

Browse files
authored
[5.0] Missing 'scope' attribute (#41753)
Associating <table> headers, i.e. <th> elements, with their <td> cells enables screen readers to announce the header prior to the data. This considerably increases the accessibility of tables to visually impaired users. The scope=col is missing from the folder column of the Extensions: Update view If you dont have any extensions listed as needing an update then you can install the German lang pack and this will trigger an entry Code review or view source will show that the "folder" column is missing a scope before this PR
1 parent 1ebc734 commit 4367ce6

File tree

1 file changed

+1
-1
lines changed
  • administrator/components/com_installer/tmpl/update

1 file changed

+1
-1
lines changed

administrator/components/com_installer/tmpl/update/default.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<th scope="col" class="d-none d-md-table-cell">
6969
<?php echo Text::_('COM_INSTALLER_CHANGELOG'); ?>
7070
</th>
71-
<th class="d-none d-md-table-cell">
71+
<th scope="col" class="d-none d-md-table-cell">
7272
<?php echo HTMLHelper::_('searchtools.sort', 'COM_INSTALLER_HEADING_FOLDER', 'folder_translated', $listDirn, $listOrder); ?>
7373
</th>
7474
<th scope="col" class="d-none d-md-table-cell">

0 commit comments

Comments
 (0)