]> git.mjollnir.org Git - moodle.git/commitdiff
Table header aligns to top
authormoodler <moodler>
Mon, 21 Oct 2002 06:51:56 +0000 (06:51 +0000)
committermoodler <moodler>
Mon, 21 Oct 2002 06:51:56 +0000 (06:51 +0000)
lib/moodlelib.php

index d7b81a847a2f7d27a7d139f0deac3c8433d4549e..8b3c01889c37297411f52ab5bfa90567032f30a7 100644 (file)
@@ -285,7 +285,7 @@ function print_table($table) {
     if ($table->head) {
         echo "<TR>";
         foreach ($table->head as $key => $heading) {
-            echo "<TH ".$align[$key].$size[$key].">$heading</TH>";
+            echo "<TH VALIGN=top ".$align[$key].$size[$key].">$heading</TH>";
         }
         echo "</TR>\n";
     }