Add another missing <tbody> ... </tbody>

This commit is contained in:
james 2010-07-21 20:17:59 +00:00
parent 589b3aa173
commit 9e3473dd33

View File

@ -363,12 +363,14 @@ echo "<th>".i18n("School(s)")."</th>";
echo "<th>".i18n("Student(s)")."</th>";
echo "<th>".i18n("Action")."</th>";
echo "</tr></thead>";
echo "<tbody>";
while($r=mysql_fetch_object($q)) {
echo "<tr id=\"row_{$r->reg_id}\">";
print_row($r);
echo "</tr>";
}
echo "</tbody>";
echo "</table>";