mirror of
https://github.com/moodle/moodle.git
synced 2025-02-02 14:19:07 +01:00
01f50e060e
in the backup/restore process in order to have every call to file.php working in destination courses. Specially useful to contents created with th HTML editor because it uses this type of URLs to images, smiles... NOTE: This make 1.3 backups not restorable in 1.2 systems !!
11 lines
418 B
PHP
11 lines
418 B
PHP
<?PHP //$Id$
|
|
// This file defines the current version of the
|
|
// backup/restore code that is being used. This can be
|
|
// compared against the values stored in the
|
|
// database (backup_version) to determine whether upgrades should
|
|
// be performed (see db/backup_*.php)
|
|
|
|
$backup_version = 2004040100; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$backup_release = "1.3 development"; // User-friendly version number
|