MDL-42909 Course: Fix title for move-targets

This commit is contained in:
Jason Fowler
2014-07-18 14:43:11 +08:00
parent d25049c0fc
commit 8ed407023d
+6 -4
View File
@@ -1108,8 +1108,9 @@ class core_course_renderer extends plugin_renderer_base {
foreach ($moduleshtml as $modnumber => $modulehtml) {
if ($ismoving) {
$movingurl = new moodle_url('/course/mod.php', array('moveto' => $modnumber, 'sesskey' => sesskey()));
$sectionoutput .= html_writer::tag('li', html_writer::link($movingurl, $this->output->render($movingpix)),
array('class' => 'movehere', 'title' => $strmovefull));
$sectionoutput .= html_writer::tag('li',
html_writer::link($movingurl, $this->output->render($movingpix), array('title' => $strmovefull)),
array('class' => 'movehere'));
}
$sectionoutput .= $modulehtml;
@@ -1117,8 +1118,9 @@ class core_course_renderer extends plugin_renderer_base {
if ($ismoving) {
$movingurl = new moodle_url('/course/mod.php', array('movetosection' => $section->id, 'sesskey' => sesskey()));
$sectionoutput .= html_writer::tag('li', html_writer::link($movingurl, $this->output->render($movingpix)),
array('class' => 'movehere', 'title' => $strmovefull));
$sectionoutput .= html_writer::tag('li',
html_writer::link($movingurl, $this->output->render($movingpix), array('title' => $strmovefull)),
array('class' => 'movehere'));
}
}