Fixing typo causing some (a few) sites to break on upgrade. Credit

goes to Rafa Gutierrez. MDL-9316

Merged from MOODLE_18_STABLE
This commit is contained in:
stronk7 2007-04-12 15:34:47 +00:00
parent 8a3719f517
commit 73710a4679
2 changed files with 2 additions and 2 deletions

View File

@ -842,7 +842,7 @@ function quiz_upgrade($oldversion) {
//If the course doesn't exist, orphan category found!
//Process it with question_delete_course(). It will do all the hard work.
if (!record_exists('course', 'id', $course->id)) {
require_once("$CFG->libdir/questionlib.php ");
require_once("$CFG->libdir/questionlib.php");
$success = $success && question_delete_course($course);
}
}

View File

@ -922,7 +922,7 @@ function quiz_upgrade($oldversion) {
//If the course doesn't exist, orphan category found!
//Process it with question_delete_course(). It will do all the hard work.
if (!record_exists('course', 'id', $course->id)) {
require_once("$CFG->libdir/questionlib.php ");
require_once("$CFG->libdir/questionlib.php");
$success = $success && question_delete_course($course);
}
}