mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 23:48:45 +01:00
23b4848794
This is to make it easier when restoring backups, especially when the questions are in a published category from another course that still exists.
12 lines
466 B
PHP
12 lines
466 B
PHP
<?PHP // $Id$
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// Code fragment to define the version of quiz
|
|
// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2003082700; // The (date) version of this module
|
|
$module->cron = 0; // How often should cron check this module (seconds)?
|
|
|
|
?>
|