Note: You are currently viewing documentation for Moodle 2.4. Up-to-date documentation for the latest stable version of Moodle may be available here: Course Approval.

Course Approval

From MoodleDocs
Revision as of 19:04, 3 November 2006 by Matt Campbell (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)) {