From: stronk7 Date: Mon, 8 Sep 2008 23:06:16 +0000 (+0000) Subject: Fix regression introduced by MDL-12029. Concepts must not be linked by filters. MDL... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=46712419fb7627d75415fb7317935bf450714d5c;p=moodle.git Fix regression introduced by MDL-12029. Concepts must not be linked by filters. MDL-16372 ; merged from 19_STABLE --- diff --git a/mod/glossary/lib.php b/mod/glossary/lib.php index c3ffbcb0eb..e005ecde60 100644 --- a/mod/glossary/lib.php +++ b/mod/glossary/lib.php @@ -682,7 +682,7 @@ function glossary_print_entry_default ($entry) { function glossary_print_entry_concept($entry) { $options = new object(); $options->para = false; - $text = format_text(print_heading($entry->concept, '', 3, 'nolink', true), FORMAT_MOODLE, $options); + $text = format_text(print_heading('' . $entry->concept . '', '', 3, 'nolink', true), FORMAT_MOODLE, $options); if (!empty($entry->highlight)) { $text = highlight($entry->highlight, $text); }