From 36259d1bd37c7e3a8acb5cc25804924f8792aaf7 Mon Sep 17 00:00:00 2001 From: skodak Date: Sun, 30 Jul 2006 21:47:43 +0000 Subject: [PATCH] Bug #6135 - Reduce unnecessary use of strtolower to make non-English languages look better; merged from MOODLE_16_STABLE --- course/mod.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.5