]> git.mjollnir.org Git - moodle.git/commitdiff
Don't lowercase the module name
authormoodler <moodler>
Sat, 7 Feb 2004 02:10:54 +0000 (02:10 +0000)
committermoodler <moodler>
Sat, 7 Feb 2004 02:10:54 +0000 (02:10 +0000)
course/mod.php

index d112a38af63450a7c3b450a6b7f915a7dd17b1e2..ed855a6f4a82e812dedd659a767ad47c2a9e0c5f 100644 (file)
         $form->mode       = "add";
 
         $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;