mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
13 lines
430 B
PHP
13 lines
430 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 = 2008030300; // The current version is a date (YYYYMMDDXX)
|
|
$backup_release = '2.0 dev'; // User-friendly version number
|
|
|
|
?>
|