mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00

record upon showing the quiz, and completing it upon submit. Two new fields in quiz_attempts... should be upgrade friendly. (Old attempts will show up as being of duration zero) Also some small fixes here and there.
11 lines
466 B
PHP
11 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 = 2002101800; // The (date) version of this module
|
|
$module->cron = 0; // How often should cron check this module (seconds)?
|
|
|
|
?>
|