mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 00:16:46 +02:00

I have not been able to test this fully, because I cannot assign roles (e.g. Student and Teacher) in 1.7dev at the moment to test a student answering an essay question then a teacher grading it. However, I have tested as much as possible as admin and cannot get any errors.
12 lines
532 B
PHP
12 lines
532 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 = 2006082400; // The (date) version of this module
|
|
$module->requires = 2006080900; // Requires this Moodle version
|
|
$module->cron = 0; // How often should cron check this module (seconds)?
|
|
|
|
?>
|