From: skodak Date: Sun, 30 Jul 2006 21:47:43 +0000 (+0000) Subject: Bug #6135 - Reduce unnecessary use of strtolower to make non-English languages look... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=36259d1bd37c7e3a8acb5cc25804924f8792aaf7;p=moodle.git Bug #6135 - Reduce unnecessary use of strtolower to make non-English languages look better; merged from MOODLE_16_STABLE --- diff --git a/course/mod.php b/course/mod.php index 935b326786..8028b49f94 100644 --- a/course/mod.php +++ b/course/mod.php @@ -502,7 +502,7 @@ $form->sesskey = !empty($USER->id) ? $USER->sesskey : ''; $sectionname = get_string("name$course->format"); - $fullmodulename = strtolower(get_string("modulename", $module->name)); + $fullmodulename = get_string("modulename", $module->name); if ($form->section && $course->format != 'site') { $heading->what = $fullmodulename; @@ -562,7 +562,7 @@ $form->sesskey = !empty($USER->id) ? $USER->sesskey : ''; $sectionname = get_string("name$course->format"); - $fullmodulename = strtolower(get_string("modulename", $module->name)); + $fullmodulename = get_string("modulename", $module->name); if ($form->section) { $heading->what = $fullmodulename;