Note: You are currently viewing documentation for Moodle 1.9. Up-to-date documentation for the latest stable version is available here: Course Approval.

Course Approval

From MoodleDocs

In 1.6, only Administrators can approve courses. If you want to allow Course Creators to approve courses, change the following:

in /course/pending.php, line 11:

if (!isadmin()) {
to
if (!iscreator()) {

and in /course/edit.php, line 22

if (!isteacheredit ($course->id)) {
to
if (!isteacheredit && !iscreator ($course->id)) {