mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
11 lines
182 B
PHP
11 lines
182 B
PHP
<?php
|
|
/**
|
|
* This file is required if the course format is to support AJAX.
|
|
*/
|
|
|
|
|
|
$CFG->ajaxcapable = true;
|
|
$CFG->ajaxtestedbrowsers = array('MSIE' => 6.0, 'Gecko' => 20061111);
|
|
|
|
?>
|