Skip to content

Commit

Permalink
Merge branch 'MDL-55720' of https://github.com/ak4t0sh/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Dec 13, 2016
2 parents 2956ca5 + 70a557d commit bd31523
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions course/modlib.php
Expand Up @@ -125,12 +125,11 @@ function add_moduleinfo($moduleinfo, $course, $mform = null) {
if (!$returnfromfunc or !is_number($returnfromfunc)) {
// Undo everything we can. This is not necessary for databases which
// support transactions, but improves consistency for other databases.
$modcontext = context_module::instance($moduleinfo->coursemodule);
context_helper::delete_instance(CONTEXT_MODULE, $moduleinfo->coursemodule);
$DB->delete_records('course_modules', array('id'=>$moduleinfo->coursemodule));

if ($e instanceof moodle_exception) {
throw $e;
if ($returnfromfunc instanceof moodle_exception) {
throw $returnfromfunc;
} else if (!is_number($returnfromfunc)) {
print_error('invalidfunction', '', course_get_url($course, $moduleinfo->section));
} else {
Expand Down

0 comments on commit bd31523

Please sign in to comment.