]> git.mjollnir.org Git - moodle.git/commitdiff
Merged from stable (sideblockheading style fix)
authormoodler <moodler>
Thu, 26 Aug 2004 14:35:14 +0000 (14:35 +0000)
committermoodler <moodler>
Thu, 26 Aug 2004 14:35:14 +0000 (14:35 +0000)
lib/weblib.php

index 1cc7e43fd860a234e4e478d689f573484f057fed..93871024ae88a952d3ea2687c6734c4a829d2f69 100644 (file)
@@ -2525,7 +2525,7 @@ function print_side_block_start($heading='', $attributes = array()) {
     // to CSS and banish the evil to the abyss from whence it came.
     echo '<table style="width: 100%;" cellspacing="0" cellpadding="5"'.$attrtext.'>';
     if ($heading) {
-        echo '<thead class="sideblockheading"><tr><td>'.$heading.'</td></tr></thead>';
+        echo '<thead><tr><td class="sideblockheading">'.$heading.'</td></tr></thead>';
     }
     echo '<tbody style="background-color: '.$THEME->cellcontent2.';"><tr><td class="sideblockmain">';
 }