mirror of
https://github.com/moodle/moodle.git
synced 2025-02-19 15:45:59 +01:00
Fixed incorrect check for whether to update state or insert new one in save_question_session() Deal with manually graded states correctly during regrading Increase state sequence number during manual grading Supplied missing userid to quiz_save_best_grade() during manual grading
13 lines
532 B
PHP
13 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 = 2006051300; // The (date) version of this module
|
|
$module->requires = 2006022400; // Requires this Moodle version
|
|
$module->cron = 0; // How often should cron check this module (seconds)?
|
|
|
|
?>
|