Correct misleading error message in upgrade_activity_modules. Spotted while diagnosing MDL-11732.

This commit is contained in:
tjhunt
2007-10-13 22:00:30 +00:00
parent eee9477bfd
commit 94f07cd524
+5 -1
View File
@@ -322,6 +322,10 @@ function upgrade_activity_modules($return) {
if ($oldupgrade && function_exists($oldupgrade_function)) {
$db->debug = true;
$oldupgrade_status = $oldupgrade_function($currmodule->version, $module);
if (!$oldupgrade_status) {
notify ('Upgrade function ' . $oldupgrade_function .
' did not complete successfully.');
}
} else if ($oldupgrade) {
notify ('Upgrade function ' . $oldupgrade_function . ' was not available in ' .
$mod . ': ' . $fullmod . '/db/' . $CFG->dbtype . '.php');
@@ -332,7 +336,7 @@ function upgrade_activity_modules($return) {
if ($newupgrade && function_exists($newupgrade_function) && $oldupgrade_status) {
$db->debug = true;
$newupgrade_status = $newupgrade_function($currmodule->version, $module);
} else if ($newupgrade) {
} else if ($newupgrade && $oldupgrade_status) {
notify ('Upgrade function ' . $newupgrade_function . ' was not available in ' .
$mod . ': ' . $fullmod . '/db/upgrade.php');
}