replaced underscore with dash in api syscalls

This commit is contained in:
Serghey Rodin 2012-11-09 18:26:32 +02:00
parent 7ed705cee7
commit b6b7eacadb
283 changed files with 438 additions and 412 deletions

View file

@ -13,7 +13,7 @@ include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
if (!empty($_GET['job'])) {
$v_username = escapeshellarg($user);
$v_job = escapeshellarg($_GET['job']);
exec (VESTA_CMD."v_delete_cron_job ".$v_username." ".$v_job, $output, $return_var);
exec (VESTA_CMD."v-delete-cron-job ".$v_username." ".$v_job, $output, $return_var);
}
if ($return_var != 0) {
$error = implode('<br>', $output);