diff --git a/mod/assign/locallib.php b/mod/assign/locallib.php index 13e72cbae50..1c68a5d43a9 100644 --- a/mod/assign/locallib.php +++ b/mod/assign/locallib.php @@ -7238,7 +7238,9 @@ class assign { } // Do not show if we are editing a previous attempt. - if ($attemptnumber == -1 && $this->get_instance()->attemptreopenmethod != ASSIGN_ATTEMPT_REOPEN_METHOD_NONE) { + if (($attemptnumber == -1 || + ($attemptnumber + 1) == count($this->get_all_submissions($userid))) && + $this->get_instance()->attemptreopenmethod != ASSIGN_ATTEMPT_REOPEN_METHOD_NONE) { $mform->addElement('header', 'attemptsettings', get_string('attemptsettings', 'assign')); $attemptreopenmethod = get_string('attemptreopenmethod_' . $this->get_instance()->attemptreopenmethod, 'assign'); $mform->addElement('static', 'attemptreopenmethod', get_string('attemptreopenmethod', 'assign'), $attemptreopenmethod);