mirror of
https://github.com/moodle/moodle.git
synced 2025-01-30 03:58:34 +01:00
"MDL-20204, fixed html_writer::tag parameters"
This commit is contained in:
parent
237e66198d
commit
6ee744b36e
@ -838,7 +838,7 @@ class core_renderer extends renderer_base {
|
||||
* @return string the HTML to be output.
|
||||
*/
|
||||
public function block_move_target($target) {
|
||||
return html_writer::tag('a', html_writer::tag('span', array('class' => 'accesshide'), $target->text), array('href' => $target->url, 'class' => 'blockmovetarget'));
|
||||
return html_writer::tag('a', html_writer::tag('span', $target->text, array('class' => 'accesshide')), array('href' => $target->url, 'class' => 'blockmovetarget'));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user