0afa12be00
Passwords are now held in clear text so you can see what the password is on the config screen. Still backward compatible with old md5 passwords (which are still not displayed of course)
16 lines
487 B
PHP
16 lines
487 B
PHP
<?php // $Id$
|
|
/**
|
|
* Code fragment to define the version of lesson
|
|
* This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
*
|
|
* @version $Id$
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
|
* @package lesson
|
|
**/
|
|
|
|
$module->version = 2008112600; // The current module version (Date: YYYYMMDDXX)
|
|
$module->requires = 2007101509; // Requires this Moodle version
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
?>
|