moodle/mod/quiz/db/oci8po.php
moodler d2f308c091 Support for events.
Ouch - I thought I'd checked this in days ago
2004-04-28 02:56:40 +00:00

18 lines
318 B
PHP
Executable File

<?PHP
function quiz_upgrade($oldversion) {
// This function does anything necessary to upgrade
// older versions to match current functionality
global $CFG;
if ($oldversion < 2004042501) {
include_once("$CFG->dirroot/mod/quiz/lib.php");
quiz_refresh_events();
}
return true;
}
?>