mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
fb443f1acf
- Any entry could belongs to many categories - Improved main page and add entry look. - Added PostgreSQL7 squema (Thanks Janne Mikkonen!) - Deleting entries also delete its attachments if any.
13 lines
195 B
PHP
13 lines
195 B
PHP
<?php
|
|
|
|
function glossary_upgrade($oldversion) {
|
|
/// This function does anything necessary to upgrade
|
|
/// older versions to match current functionality
|
|
|
|
global $CFG;
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|