MDL-61344 mod_assign: Show additional files when adding submission

This commit is contained in:
Nicolas Dunand 2018-02-02 15:25:41 +01:00
parent a409707794
commit a0b2b76613

View File

@ -4519,11 +4519,15 @@ class assign {
return $this->view_notices($title, $message);
}
$postfix = '';
if ($this->has_visible_attachments()) {
$postfix = $this->render_area_files('mod_assign', ASSIGN_INTROATTACHMENT_FILEAREA, 0);
}
$o .= $this->get_renderer()->render(new assign_header($this->get_instance(),
$this->get_context(),
$this->show_intro(),
$this->get_course_module()->id,
$title));
$title, '', $postfix));
if ($userid == $USER->id) {
// We only show this if it their submission.
$o .= $this->plagiarism_print_disclosure();