Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/main/inc/ajax/install.ajax.php

23 lines
378 B

<?php
/* For licensing terms, see /chamilo_license.txt */
/**
* Responses to AJAX calls for install
*/
//require_once '../global.inc.php';
$action = $_GET['a'];
switch ($action) {
case 'send_contact_information':
if (!empty($_POST)) {
echo 1;
}
break;
default:
echo '';
}
exit;
?>