-
Improvement
-
Resolution: Fixed
-
Minor
-
1.6.2
-
None
-
All
-
MOODLE_16_STABLE
-
MOODLE_16_STABLE, MOODLE_17_STABLE
Currently in the "uploadsingle" assignment type, a student can access his/her uploaded document only until the teacher has graded it. Then the teacher's comment replaces rather than supplements the link to the student's document. There does not seem to be a good reason to block student access to their document and lots of good reasons to have it be available for them for review after feedback.
The simple solution is to just not use the "else" statement on around line 64 in assignment.class.php of the uploadsingle assignment type as below on the line marked GVA
if ($submission = $this->get_submission()) {
if ($submission->timemarked)
if ($filecount) { //GVA else if ($filecount)
{ print_simple_box($this->print_user_files($USER->id, true), 'center'); }}
An even better solution would be to display it above the teacher comment so that other version of the module could put a marked up version of the document by the teacher below the teacher comments.
- duplicates
-
MDL-6770 Student cannot see handed-in assignment
- Closed