
|
If you were logged in you would be able to see more operations.
|
|
|
Moodle
Created: 04/Dec/07 03:17 AM
Updated: Thursday 06:51 PM
|
|
| Component/s: |
Quiz,
Questions
|
| Affects Version/s: |
1.8,
1.8.1,
1.8.2,
1.8.3
|
| Fix Version/s: |
2.0
|
|
|
File Attachments:
|
1.
moodle_item_analysis_latex.patch (1 kb)
|
|
Image Attachments:
|
|
|
Issue Links:
|
Dependency
|
|
|
|
This issue will be resolved by:
|
|
MDL-14205
Content for Individual Item Analysis report - different for each question type
|
|
|
|
|
Duplicate
|
|
|
|
This issue is duplicated by:
|
|
MDL-11981
Problems with quiz item analysis and tex-filter
|
|
|
|
|
|
|
When viewing an Item Analysis report of a quiz with multiple choice questions that have LaTeX formatting in the answers, extra duplicate answers appear in the report table. This seems to be because the answer comparison in the Item Analysis report expects plain text answers from get_actual_response in each questiontype class file. The get_actual_response function in the question_multichoice_qtype class returns a formatted response. This change was introduced in MDL-8349 to filter the LaTeX in answers shown in the summary. This patch will format the questions as before, but the formatting was moved to response_summary where it is needed and not in get_actual_response where a plain text response is needed. The filter still shows LaTeX in this summary as escaped html which is how they were showing up before this patch.
|
|
Description
|
When viewing an Item Analysis report of a quiz with multiple choice questions that have LaTeX formatting in the answers, extra duplicate answers appear in the report table. This seems to be because the answer comparison in the Item Analysis report expects plain text answers from get_actual_response in each questiontype class file. The get_actual_response function in the question_multichoice_qtype class returns a formatted response. This change was introduced in MDL-8349 to filter the LaTeX in answers shown in the summary. This patch will format the questions as before, but the formatting was moved to response_summary where it is needed and not in get_actual_response where a plain text response is needed. The filter still shows LaTeX in this summary as escaped html which is how they were showing up before this patch. |
Show » |
|
MDL-11981. The formatting problem in the summary asked about in that report is not fixed by the above patch, however.