From: moodler Date: Sat, 7 Feb 2004 02:10:54 +0000 (+0000) Subject: Don't lowercase the module name X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5e1aaecb20838714b03f65590ddb93135f2ed6f6;p=moodle.git Don't lowercase the module name --- diff --git a/course/mod.php b/course/mod.php index d112a38af6..ed855a6f4a 100644 --- a/course/mod.php +++ b/course/mod.php @@ -477,7 +477,7 @@ $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;