97d2756c65
[Added] Graceful fails added to view.php, essay grading, and reports [Changed] got rid of a lot of references to $_POST/GET/REQUEST [Fixed] In reports, it required teacheredit, should only be teacher [Changed] High scores - teachers can actually see them! Also, improved output by using print_table and print_heading [Changed] Grade essays now uses fullname() to print user names
13 lines
540 B
PHP
13 lines
540 B
PHP
<?PHP // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
/// Code fragment to define the version of lesson
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2006031900; // The current module version (Date: YYYYMMDDXX)
|
|
$module->requires = 2005021600; // Requires this Moodle version
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
?>
|