mirror of
https://github.com/moodle/moodle.git
synced 2025-07-26 08:50:30 +02:00
23 lines
477 B
PHP
23 lines
477 B
PHP
<?PHP //$Id$
|
|
|
|
// THIS FILE IS DEPRECATED! PLEASE DO NOT MAKE CHANGES TO IT!
|
|
//
|
|
// IT IS USED ONLY FOR UPGRADES FROM BEFORE MOODLE 1.7, ALL
|
|
// LATER CHANGES SHOULD USE upgrade.php IN THIS DIRECTORY.
|
|
|
|
// MySQL commands for upgrading this enrolment module
|
|
|
|
function enrol_paypal_upgrade($oldversion=0) {
|
|
|
|
global $CFG, $THEME, $db;
|
|
|
|
$result = true;
|
|
|
|
////// DO NOT ADD NEW THINGS HERE!! USE upgrade.php and the lib/ddllib.php functions.
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
?>
|