mirror of
https://github.com/moodle/moodle.git
synced 2025-01-21 07:28:31 +01:00
dc36351d8b
Whole words match No match at all (a bit rude (you have to get down to the HTML code), no GUI so far either) Categories are now linked too (I forced to be a case sensitive match) You can automatically link one or several glossaries at once no matter if it is a main one or not.
14 lines
542 B
PHP
14 lines
542 B
PHP
<?PHP // $Id$
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
/// Code fragment to define the version of glossary
|
|
/// This fragment is called by moodle_needs_upgrading() and /admin/index.php
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
$module->version = 2003101601; // The current module version (Date: YYYYMMDDXX)
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
$release = "0.5 development"; // User-friendly version number
|
|
|
|
?>
|