I have a quiz with multiple completed attempts. When I click "Download In <Text/ Excel/ ODS> Format" it just redirects my browser to some raw, unreadable data. I can't save the data and open in Excel.
This occurs in Firefox 3.6.x and IE 8; Moodle 1.9.7
How can I fix this?
Thanks
It is getting confused by the "No students enrolled ... yet" message which is being output. That is breaking whatever file format it is that you are trying to download.
The odd thing is that the download options are not output unless there are students.
The odd thing is that the download options are not output unless there are students.
Tim,
Thanks for the response. This quiz is on the root level of Moodle, and not in a class so there will never be enrolled students. However, people have successfully taken the quiz and I can see their scores within moodle. Is there any way to suppress the "No students enrolled ... yet" message?
Thanks for the response. This quiz is on the root level of Moodle, and not in a class so there will never be enrolled students. However, people have successfully taken the quiz and I can see their scores within moodle. Is there any way to suppress the "No students enrolled ... yet" message?
Ah, well that is a bug. I can't find it recorded in http://tracker.moodle.org, so please report it officially so I don't forget about it.
As a quick fix, try commenting out the line
notify(get_string('nostudentsyet'));
in mod/quiz/report/overview/report.php
As a quick fix, try commenting out the line
notify(get_string('nostudentsyet'));
in mod/quiz/report/overview/report.php
That fix works, thanks. Bug report filed.