]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-14111, fix html tag error
authordongsheng <dongsheng>
Wed, 2 Apr 2008 07:21:10 +0000 (07:21 +0000)
committerdongsheng <dongsheng>
Wed, 2 Apr 2008 07:21:10 +0000 (07:21 +0000)
blocks/moodleblock.class.php

index efba6e7ae5a1e33928810eaef266a945362285bd..9647b77ba401fbad81a964f2fdf3b6421b841f99 100644 (file)
@@ -387,7 +387,7 @@ class block_base {
         }
 
         //Accesssibility: added H2 (was in, weblib.php: print_side_block)
-        $title .= '<h1>'.filter_text($this->title).'</h2>';
+        $title .= '<h2>'.filter_text($this->title).'</h2>';
 
         if ($this->edit_controls !== NULL) {
             $title .= $this->edit_controls;