Changed name of upgrade_moodle function to main_upgrade (for consistency)

This commit is contained in:
moodler 2002-10-23 04:10:10 +00:00
parent 3bd87406ba
commit e7311a0a56
3 changed files with 4 additions and 4 deletions

View file

@ -17,7 +17,7 @@
//
// This file is tailored to MySQL
function upgrade_moodle($oldversion=0) {
function main_upgrade($oldversion=0) {
if ($oldversion == 0) {
execute_sql("

View file

@ -17,7 +17,7 @@
//
// This file is tailored to PostgreSQL 7
function upgrade_moodle($oldversion=0) {
function main_upgrade($oldversion=0) {
return true;
}