]> git.mjollnir.org Git - moodle.git/commitdiff
Bug #6135 - Reduce unnecessary use of strtolower to make non-English languages look...
authorskodak <skodak>
Sun, 30 Jul 2006 21:47:43 +0000 (21:47 +0000)
committerskodak <skodak>
Sun, 30 Jul 2006 21:47:43 +0000 (21:47 +0000)
course/mod.php

index 935b32678699fd273d964b0347f7b874b60878de..8028b49f944c60339965df4ae6201f0af7c641f6 100644 (file)
         $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;
         $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;