mirror of
https://github.com/moodle/moodle.git
synced 2025-02-08 17:11:49 +01:00
Now, print view is different for each format (consistent with it). New, custom formats can, optionally, define their print view. Else the default one will be used. With this, 1.4.x glossary developments are finished and we can start solving some pending things in 1.5... Merged from MOODLE_14_STABLE
15 lines
557 B
PHP
15 lines
557 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 = 2004111000;
|
|
$module->requires = 2004091700; // Requires this Moodle version
|
|
$module->cron = 0; // Period for cron to check this module (secs)
|
|
|
|
$release = "1.5 development"; // User-friendly version number
|
|
|
|
?>
|