From 9c34b80d8f1e0bc0050c9b66533837b8611738f5 Mon Sep 17 00:00:00 2001 From: dongsheng Date: Tue, 1 Apr 2008 01:39:44 +0000 Subject: [PATCH] MDL-14111, multilang html-block title, merged from MOODLE_19_STABLE, thanks Gordon Bateson --- blocks/moodleblock.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/moodleblock.class.php b/blocks/moodleblock.class.php index 4afe7d7975..efba6e7ae5 100644 --- a/blocks/moodleblock.class.php +++ b/blocks/moodleblock.class.php @@ -387,7 +387,7 @@ class block_base { } //Accesssibility: added H2 (was in, weblib.php: print_side_block) - $title .= '

'.$this->title.'

'; + $title .= '

'.filter_text($this->title).'

'; if ($this->edit_controls !== NULL) { $title .= $this->edit_controls; -- 2.39.5