We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We know this happens in Moodle 4.4. It might happen in previous versions too.
Moodle redirects to the Gradebook when there are more than a certain number of saved scores, and the module doesn't check that.
It can be fixed doing this in Moodle's core (course/modedit.php), but the module should check that:
modedit.php original code:
if (isset($fromform->needsfrontendregrade)) { $url = new moodle_url('/course/modregrade.php', ['id' => $fromform->coursemodule, 'url' => $url->out_as_local_url(false)]); }
Provisional new code:
if (isset($fromform->needsfrontendregrade) && $fromform->modulename != 'exescorm') { $url = new moodle_url('/course/modregrade.php', ['id' => $fromform->coursemodule, 'url' => $url->out_as_local_url(false)]); }
The text was updated successfully, but these errors were encountered:
amanzano3ip
No branches or pull requests
We know this happens in Moodle 4.4. It might happen in previous versions too.
Moodle redirects to the Gradebook when there are more than a certain number of saved scores, and the module doesn't check that.
It can be fixed doing this in Moodle's core (course/modedit.php), but the module should check that:
modedit.php original code:
Provisional new code:
The text was updated successfully, but these errors were encountered: