From e0147c9bc733e93819d66c9358aef001c5cc351a Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sat, 15 May 2004 17:34:43 +0000 Subject: [PATCH] Now entry->concept is always printed in FORMAT_MOODLE format, instead of using the entry->format field. This should close Bug 1298. (http://moodle.org/bugs/bug.php?op=show&bugid=1298) --- mod/glossary/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/glossary/lib.php b/mod/glossary/lib.php index 8293337dae..6ba303bb7b 100644 --- a/mod/glossary/lib.php +++ b/mod/glossary/lib.php @@ -460,7 +460,7 @@ function glossary_print_entry($course, $cm, $glossary, $entry, $mode="",$hook="" } function glossary_print_entry_concept($entry) { $options->para = false; - $text = format_text('' . $entry->concept . '', $entry->format, $options); + $text = format_text('' . $entry->concept . '', FORMAT_MOODLE, $options); if (!empty($entry->highlight)) { $text = highlight($entry->highlight, $text); } -- 2.39.5