Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'MDL-61129-fix-accessibility-on-tables-mod_survey_Moodle…
…-33' of https://github.com/guillalva06/moodle into MOODLE_33_STABLE
  • Loading branch information
David Monllao committed Apr 10, 2018
2 parents 9471422 + 77e0eaf commit fddf02e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mod/survey/lib.php
Expand Up @@ -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>";
while (list ($key, $val) = each ($options)) {
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);

Expand Down

0 comments on commit fddf02e

Please sign in to comment.