From e8dcf7f9494b1c8368e3de53ed16adb49291caaa Mon Sep 17 00:00:00 2001 From: dongsheng Date: Wed, 2 Apr 2008 07:21:10 +0000 Subject: [PATCH] MDL-14111, fix html tag error --- 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 efba6e7ae5..9647b77ba4 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 .= '

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

'; + $title .= '

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

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