mirror of
https://github.com/moodle/moodle.git
synced 2025-01-20 15:08:32 +01:00
8f7dc7f1c7
block is constructed. A new function exists to pump these notes out in a standard way : print_recent_activity_note. Module dependencies also updated because of this.
13 lines
555 B
PHP
13 lines
555 B
PHP
<?PHP // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
/// Code fragment to define the version of Wiki
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2005031000; // The current module version (Date: YYYYMMDDXX)
|
|
$module->requires = 2005031000; // The current module version (Date: YYYYMMDDXX)
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
?>
|