mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
XHTML and accessibility compliance
This commit is contained in:
parent
4bab5275b2
commit
d526e68ee7
4 changed files with 34 additions and 31 deletions
|
@ -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 = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue