mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 10:26:40 +02:00

- Removing more notices when debug is ON - Added a new feature: Now the entries have a default approval status... Not approved entries are shown on a teachers-only frame from which they can be approved or not prior to be visible by everyone.
13 lines
542 B
PHP
13 lines
542 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 = 2003102000; // The current module version (Date: YYYYMMDDXX)
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
$release = "0.5 development"; // User-friendly version number
|
|
|
|
?>
|