From 46712419fb7627d75415fb7317935bf450714d5c Mon Sep 17 00:00:00 2001 From: stronk7 Date: Mon, 8 Sep 2008 23:06:16 +0000 Subject: [PATCH] Fix regression introduced by MDL-12029. Concepts must not be linked by filters. MDL-16372 ; merged from 19_STABLE --- 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 c3ffbcb0eb4..e005ecde601 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); }