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.
23 lines
378 B
23 lines
378 B
![]()
16 years ago
|
<?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;
|
||
|
|
||
|
?>
|