Skip to content

Commit fb0d7a5

Browse files
authored
Merge pull request #11160 from leifos-gmbh/fix_44583
44583: First column heading in a table has no heading
2 parents c374e0f + fa899c8 commit fb0d7a5

4 files changed

Lines changed: 4 additions & 1 deletion

File tree

components/ILIAS/Table/classes/class.ilTable2GUI.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1080,6 +1080,7 @@ public function fillHeader(): void
10801080
: $column["width"];
10811081
$this->tpl->setVariable("TBL_COLUMN_WIDTH", " style=\"width:" . $width . "\"");
10821082
}
1083+
$this->tpl->setVariable("TXT_SELECTION", $this->lng->txt("tbl_selection"));
10831084
$this->tpl->parseCurrentBlock();
10841085
continue;
10851086
}

components/ILIAS/Table/templates/default/tpl.table2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
</td>
155155
<!-- END tbl_header_top_select_all -->
156156
<!-- BEGIN tbl_header_top_select_column -->
157-
<td {TBL_COLUMN_WIDTH}>
157+
<td {TBL_COLUMN_WIDTH}><span class="sr-only">{TXT_SELECTION}</span>
158158
</td>
159159
<!-- END tbl_header_top_select_column -->
160160
<!-- BEGIN tbl_header_no_link -->

lang/ilias_de.lang

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17086,6 +17086,7 @@ tax#:#tax_tax_settings#:#Taxonomieeinstellungen
1708617086
tax#:#tax_taxonomy#:#Taxonomie
1708717087
tbl#:#tbl_export_csv#:#.CSV-Export
1708817088
tbl#:#tbl_export_excel#:#Excel-Export
17089+
tbl#:#tbl_selection#:#Auswahl
1708917090
tbl#:#tbl_template_create#:#Aktuelle Ansicht speichern
1709017091
tbl#:#tbl_template_created#:#Die aktuelle Ansicht wurde gespeichert.
1709117092
tbl#:#tbl_template_delete#:#Gespeicherte Ansicht löschen

lang/ilias_en.lang

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17087,6 +17087,7 @@ tax#:#tax_tax_settings#:#Taxonomy Settings
1708717087
tax#:#tax_taxonomy#:#Taxonomy
1708817088
tbl#:#tbl_export_csv#:#Export CSV
1708917089
tbl#:#tbl_export_excel#:#Export Excel
17090+
tbl#:#tbl_selection#:#Selection
1709017091
tbl#:#tbl_template_create#:#Save Current View
1709117092
tbl#:#tbl_template_created#:#The current view has been saved.
1709217093
tbl#:#tbl_template_delete#:#Delete Saved View

0 commit comments

Comments
 (0)