Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge branch 'MDL-61129-fix-accessibility-on-tables-mod_survey_MASTER…
- Loading branch information
Showing
with
2 additions
and
1 deletion.
-
+2
−1
mod/survey/lib.php
|
@@ -537,14 +537,15 @@ function survey_print_multi($question) { |
|
|
$P = ""; |
|
|
} |
|
|
|
|
|
echo "<colgroup colspan=\"7\"></colgroup>"; |
|
|
echo "<tr class=\"smalltext\"><th scope=\"row\">$strresponses</th>"; |
|
|
echo "<th scope=\"col\" class=\"hresponse\">". get_string('notyetanswered', 'survey'). "</th>"; |
|
|
foreach ($options as $key => $val) { |
|
|
echo "<th scope=\"col\" class=\"hresponse\">$val</th>\n"; |
|
|
} |
|
|
echo "</tr>\n"; |
|
|
|
|
|
echo "<tr><th scope=\"col\" colspan=\"7\">$question->intro</th></tr>\n"; |
|
|
echo "<tr><th scope=\"colgroup\" colspan=\"7\">$question->intro</th></tr>\n"; |
|
|
|
|
|
$subquestions = survey_get_subquestions($question); |
|
|
|
|
|