From: willcast Date: Sat, 18 Oct 2003 20:37:40 +0000 (+0000) Subject: - Fixed another bug when showing "dynaentries" (it does not take in count the case... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=3dfa6ce23a8cf22d471e5c11daee5fc51be4fb42;p=moodle.git - Fixed another bug when showing "dynaentries" (it does not take in count the case sensitive setting) --- diff --git a/mod/glossary/showentry.php b/mod/glossary/showentry.php index a294c1952e..26d25dfbc6 100644 --- a/mod/glossary/showentry.php +++ b/mod/glossary/showentry.php @@ -8,7 +8,8 @@ print_header(); $entries = get_records_sql("select e.* from {$CFG->prefix}glossary_entries e, {$CFG->prefix}glossary g". " where e.glossaryid = g.id and". - " ucase(concept) = '" . strtoupper(trim($concept)). "' and". + " (e.casesensitive = 1 and ucase(concept) = '" . strtoupper(trim($concept)). "' or". + " e.casesensitive = 0 and concept = '$concept') and". " g.course = $courseid and". " e.usedynalink = 1 and g.usedynalink = 1");