From 77e0eaf2a6e6cb115dfc660dceb9d2a3e636941b Mon Sep 17 00:00:00 2001 From: Guillermo Alvarez Date: Mon, 5 Mar 2018 14:28:46 -0500 Subject: [PATCH] MDL-61129 survey: Add colgroup attribute at survey question tables --- mod/survey/lib.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mod/survey/lib.php b/mod/survey/lib.php index f7dcc336051..bde5bf1dc26 100644 --- a/mod/survey/lib.php +++ b/mod/survey/lib.php @@ -537,6 +537,7 @@ function survey_print_multi($question) { $P = ""; } + echo ""; echo "$strresponses"; echo "". get_string('notyetanswered', 'survey'). ""; while (list ($key, $val) = each ($options)) { @@ -544,7 +545,7 @@ function survey_print_multi($question) { } echo "\n"; - echo "$question->intro\n"; + echo "$question->intro\n"; $subquestions = survey_get_subquestions($question);