mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
69d79bc31f
Logs now include a field called modid which contains the coursemodule id. This makes it now possible to - see complete logs per-activity - do backup/restore of logs The upgrade process will currently try to scan all the old logs and rebuild this field based on available data (especially forums). STILL TO DO: alter all the non-forum modules to send the coursemodule id
14 lines
382 B
PHP
14 lines
382 B
PHP
<?PHP //$Id$
|
|
// This file defines the current version of the
|
|
// Moodle code that is being used. This can be
|
|
// compared against the values stored in the
|
|
// database to determine whether upgrades should
|
|
// be performed (see lib/db/*.php)
|
|
|
|
$version = 2004013101; // The current version is a date (YYYYMMDDXX)
|
|
|
|
$release = "1.2 development"; // User-friendly version number
|
|
|
|
|
|
?>
|