Grade exemptions

Grade exemptions

by Eric Malone -
Number of replies: 3
Hello everyone,
When I'm logged into moodle as an administrator, I can do grade exemptions, but when teachers try to do it, they get a permissions error message. Does anyone know how to enable exemptions for teachers?
In reply to Eric Malone

Re: Grade exemptions

by Anthony Borrow -
Picture of Core developers Picture of Plugin developers Picture of Testers

This was recently fixed in CVS - get the latest version (1.11.6.3) which fixes MDL-8080. Alternatively, change line 15 in the /grade/exceptions.php file from:

require_capability('moodle/course:managegrades', get_context_instance(CONTEXT_MODULE, $id));

to:

 require_capability('moodle/course:managegrades', get_context_instance(CONTEXT_COURSE, $id));

That should resolve your problem. Peace.