mirror of
https://github.com/moodle/moodle.git
synced 2025-02-24 20:13:14 +01:00
We'll use this number to determinate the code to be used in quiz restore making these assumptions: - backup_version < 2005043000, old quiz version. - backup_version >=2005043000, new quiz version. This will cover near every backup in the world, only some backups generated last week will be wrong but I think we can ignore them (we are in alpha stage).
11 lines
411 B
PHP
11 lines
411 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 = 2005043000; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$backup_release = "1.5 beta"; // User-friendly version number
|