Merge branch 'MDL-38101-master' of git://github.com/sammarshallou/moodle

This commit is contained in:
Sam Hemelryk 2013-03-05 09:30:02 +13:00
commit ed2703290c

View File

@ -138,14 +138,17 @@ if (isguestuser() or !confirm_sesskey()) {
print_error('error');
}
// Now change state
// Set up completion object and check it is enabled.
$completion = new completion_info($course);
if (!$completion->is_enabled()) {
throw new moodle_exception('completionnotenabled', 'completion');
} elseif (!$completion->is_tracked_user($USER->id)) {
throw new moodle_exception('nottracked', 'completion');
}
// NOTE: All users are allowed to toggle their completion state, including
// users for whom completion information is not directly tracked. (I.e. even
// if you are a teacher, or admin who is not enrolled, you can still toggle
// your own completion state. You just don't appear on the reports.)
// Check completion state is manual
if($cm->completion != COMPLETION_TRACKING_MANUAL) {
error_or_ajax('cannotmanualctrack', $fromajax);