moodle/mod/hotpot/defaults.php
moodler df0fcc6f78 The initial installation is now properly handled.
Hot Potatoes is disabled by default in new installations.
2005-04-25 16:29:50 +00:00

10 lines
257 B
PHP

<?php
if (empty($CFG->hotpot_initialdisable)) {
if (!count_records('hotpot')) {
set_field('modules', 'visible', 0, 'name', 'hotpot'); // Disable it by default
set_config('hotpot_initialdisable', 1);
}
}
?>