2003-09-14 12:30:09 +00:00
|
|
|
<?PHP
|
|
|
|
|
|
|
|
function label_upgrade($oldversion) {
|
|
|
|
/// This function does anything necessary to upgrade
|
|
|
|
/// older versions to match current functionality
|
|
|
|
|
|
|
|
global $CFG;
|
|
|
|
|
2003-09-14 15:20:09 +00:00
|
|
|
if ($oldversion < 2003091400) {
|
|
|
|
table_column("label", "", "course", "integer", "10", "unsigned", "0", "not null", "id");
|
|
|
|
}
|
|
|
|
|
2004-02-19 13:25:25 +00:00
|
|
|
if ($oldversion < 2004021900) {
|
|
|
|
modify_database("", "INSERT INTO prefix_log_display VALUES ('label', 'add', 'quiz', 'name');");
|
|
|
|
modify_database("", "INSERT INTO prefix_log_display VALUES ('label', 'update', 'quiz', 'name');");
|
|
|
|
}
|
|
|
|
|
2003-09-14 12:30:09 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|