Index: report.php
===================================================================
RCS file: /cvsroot/moodle/contrib/plugins/mod/quiz/report/responses/report.php,v
retrieving revision 1.13.2.1
diff -c -r1.13.2.1 report.php
*** report.php 27 Jan 2008 01:31:00 -0000 1.13.2.1
--- report.php 3 Mar 2008 16:09:45 -0000
***************
*** 445,451 ****
$responsetext = ''.format_text("$response", FORMAT_MOODLE, $format_optio
ns, $quiz->course).'';
$rowdata[]=$responsetext;
} else if ($download == 'Excel' || $download == 'ODS' || $download =='CSV') {
! $rowdata[] = $response;
}
}
}
--- 445,451 ----
$responsetext = ''.format_text("$response", FORMAT_MOODLE, $format_optio
ns, $quiz->course).'';
$rowdata[]=$responsetext;
} else if ($download == 'Excel' || $download == 'ODS' || $download =='CSV') {
! $rowdata[] = html_to_text($response);
}
}
}