Fix regression introduced by MDL-12029. Concepts must not be linked by filters. MDL-16372

This commit is contained in:
stronk7
2008-09-08 23:04:22 +00:00
parent e1a609c888
commit d0fd3458fc
+1 -1
View File
@@ -685,7 +685,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('<span class="nolink">' . $entry->concept . '</span>', '', 3, 'nolink', true), FORMAT_MOODLE, $options);
if (!empty($entry->highlight)) {
$text = highlight($entry->highlight, $text);
}