diff --git a/components/ILIAS/Table/classes/class.ilTable2GUI.php b/components/ILIAS/Table/classes/class.ilTable2GUI.php index 7f8942863522..d0e17f42a476 100755 --- a/components/ILIAS/Table/classes/class.ilTable2GUI.php +++ b/components/ILIAS/Table/classes/class.ilTable2GUI.php @@ -2320,7 +2320,16 @@ public function fillActionRow(): void } $this->tpl->setVariable( "SELECT_CMDS", - ilLegacyFormElementsUtil::formSelect("", "selected_cmd2", $sel, false, true) + ilLegacyFormElementsUtil::formSelect( + "", // selected + "selected_cmd2", // name + $sel, // options + false, // use_multi + true, // submit_after_change + 0, // size + "", // css class + array("aria-label" => $lng->txt("action")) // <-- localized aria-label + ) ); $this->tpl->setVariable("TXT_EXECUTE", $lng->txt("execute")); $this->tpl->parseCurrentBlock();