69901d1994
by Ray Kingdon. Works quite well, but it's not clear yet if this will be part of major releases (due to the overlap with assignments and workshops and the confusion this may cause).
16 lines
205 B
PHP
16 lines
205 B
PHP
<?PHP // $Id$
|
|
|
|
function exercise_upgrade($oldversion) {
|
|
// This function does anything necessary to upgrade
|
|
// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
?>
|
|
|