-
Bug
-
Resolution: Fixed
-
Major
-
2.2, 2.2.2, 2.4.3
-
Any
-
MOODLE_22_STABLE, MOODLE_24_STABLE
-
MOODLE_25_STABLE
-
wip-
MDL-32946-master -
Easy
-
Funcion edit_controls on blocklib.php prints control images that have the same alternative text to each block.
Example:
$controls[] = array('url' => $actionurl . '&bui_moveid=' . $block->instance->id,
|
'icon' => 't/move', 'caption' => get_string('move'));
|
caption "get_string('move')" is the same to each block and is not accessible to be used.
The solution is to add contextual information to each control this way screen readers can differentiate each control:
get_string('moveblock','',$block->title)
|