crm-rush/api/modules/task/ajax.php

10 lines
136 B
PHP
Executable File

<?php
ini_set('display_errors', 1);
echo "123";
switch (@$_POST['act']) {
case 'start_task':
echo 1;
break;
default:
}
?>