mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00

======================================= WARNING: DEV IS CURRENTLY VERY UNSTABLE. This is a mega-checkin of the new Roles system. A lot of changes have been made in core and modules. Currently there are a lot of rough edges and known problems. We are working hard on these .. .the reason for getting this into HEAD at this stage is enable us to move faster (our branch was diverging from HEAD too much). Please keep an eye on http://docs.moodle.org/en/Roles for current status and information for developers on how to use the new Roles system.
12 lines
492 B
PHP
12 lines
492 B
PHP
<?php // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
/// Code fragment to define the version of glossary
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2006080800;
|
|
$module->requires = 2005031000; // Requires this Moodle version
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
?>
|