From 28b93e2d5ae726aa32f9a84d79d0d95deb883582 Mon Sep 17 00:00:00 2001 From: Marina Glancy Date: Tue, 23 Apr 2013 12:45:22 +1000 Subject: [PATCH] MDL-39297 fixed mistype in tag name label --- course/renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course/renderer.php b/course/renderer.php index 896facb5b40..f482a47436c 100644 --- a/course/renderer.php +++ b/course/renderer.php @@ -493,7 +493,7 @@ class core_course_renderer extends plugin_renderer_base { $output = html_writer::start_tag('form', array('id' => $formid, 'action' => $searchurl, 'method' => 'get')); $output .= html_writer::start_tag('fieldset', array('class' => 'coursesearchbox invisiblefieldset')); - $output .= html_writer::tag('lavel', $strsearchcourses.': ', array('for' => $inputid)); + $output .= html_writer::tag('label', $strsearchcourses.': ', array('for' => $inputid)); $output .= html_writer::empty_tag('input', array('type' => 'text', 'id' => $inputid, 'size' => $inputsize, 'name' => 'search', 'value' => s($value))); $output .= html_writer::empty_tag('input', array('type' => 'submit', -- 2.36.1