mirror of
https://github.com/moodle/moodle.git
synced 2025-08-03 16:13:28 +02:00
Changed name of upgrade_moodle function to main_upgrade (for consistency)
This commit is contained in:
parent
3bd87406ba
commit
e7311a0a56
3 changed files with 4 additions and 4 deletions
|
@ -68,7 +68,7 @@
|
|||
print_header($strdatabasechecking, $strdatabasechecking, $strdatabasechecking);
|
||||
notify($strdatabasechecking);
|
||||
$db->debug=true;
|
||||
if (upgrade_moodle($CFG->version)) {
|
||||
if (main_upgrade($CFG->version)) {
|
||||
$db->debug=false;
|
||||
if (set_config("version", $version)) {
|
||||
notify($strdatabasesuccess);
|
||||
|
@ -95,7 +95,7 @@
|
|||
die;
|
||||
} else {
|
||||
$db->debug=true;
|
||||
if (upgrade_moodle(0)) {
|
||||
if (main_upgrade(0)) {
|
||||
print_continue("index.php");
|
||||
} else {
|
||||
error("A problem occurred inserting current version into databases");
|
||||
|
|
|
@ -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("
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
//
|
||||
// This file is tailored to PostgreSQL 7
|
||||
|
||||
function upgrade_moodle($oldversion=0) {
|
||||
function main_upgrade($oldversion=0) {
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue