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

goes to Rafa Gutierrez. MDL-9316
This commit is contained in:
stronk7
2007-04-12 15:30:03 +00:00
parent 35decbd8be
commit d7a7b5b5db
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -837,7 +837,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);
}
}
+1 -1
View File
@@ -917,7 +917,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);
}
}