Index: mod/quiz/report/responses/responses_table.php =================================================================== RCS file: /cvsroot/moodle/moodle/mod/quiz/report/responses/responses_table.php,v retrieving revision 1.7 diff -u -r1.7 responses_table.php --- mod/quiz/report/responses/responses_table.php 25 Jul 2008 14:05:40 -0000 1.7 +++ mod/quiz/report/responses/responses_table.php 1 Sep 2008 07:42:48 -0000 @@ -21,8 +21,6 @@ } function build_table(){ if ($this->rawdata) { - // Define some things we need later to process raw data from db. - $this->strtimeformat = get_string('strftimedatetime'); parent::build_table(); } } @@ -149,7 +147,7 @@ $questionid = $matches[1]; $question = $this->questions[$questionid]; $responses = get_question_actual_response($question, $statesforattempt[$questionid]); - $response = (!empty($responses)? implode(', ',$responses) : '-'); + $response = (!empty($responses)? implode('; ',$responses) : '-'); $grade = $statesforattempt[$questionid]->last_graded->grade / $this->questions[$questionid]->maxgrade; if (!$this->is_downloading()) {