XHTML and accessibility compliance

This commit is contained in:
moodler 2004-10-22 07:45:58 +00:00
parent 4bab5275b2
commit d526e68ee7
4 changed files with 34 additions and 31 deletions

View file

@ -38,13 +38,13 @@
if ($course->format == "weeks") {
$table->head = array (get_string("week"), get_string("question"), get_string("answer"));
$table->align = array ("CENTER", "LEFT", "LEFT");
$table->align = array ("center", "left", "left");
} else if ($course->format == "topics") {
$table->head = array (get_string("topic"), get_string("question"), get_string("answer"));
$table->align = array ("CENTER", "LEFT", "LEFT");
$table->align = array ("center", "left", "left");
} else {
$table->head = array (get_string("question"), get_string("answer"));
$table->align = array ("LEFT", "LEFT");
$table->align = array ("left", "left");
}
$currentsection = "";