From 38cdfab3ca8a66fd71ce5ced59dc5a193a5cebf6 Mon Sep 17 00:00:00 2001 From: Sam Hemelryk Date: Wed, 26 Sep 2012 08:23:55 +1200 Subject: [PATCH] MDL-31976 course: Better alt for edit section icon --- course/format/renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course/format/renderer.php b/course/format/renderer.php index 5e54308df8c..152cfa7396c 100644 --- a/course/format/renderer.php +++ b/course/format/renderer.php @@ -169,7 +169,7 @@ abstract class format_section_renderer_base extends plugin_renderer_base { $url = new moodle_url('/course/editsection.php', array('id'=>$section->id, 'sr'=>$sectionreturn)); $o.= html_writer::link($url, html_writer::empty_tag('img', array('src' => $this->output->pix_url('t/edit'), - 'class' => 'iconsmall edit', 'alt' => get_string('editsummary'))), + 'class' => 'iconsmall edit', 'alt' => get_string('edit'))), array('title' => get_string('editsummary'))); } $o.= html_writer::end_tag('div');