Files
hestiacp/web/add/cron/reports/index.php
Alexey Berezhok 346a50856b Initial
2024-03-19 22:05:27 +03:00

13 lines
238 B
PHP

<?php
ob_start();
include $_SERVER["DOCUMENT_ROOT"] . "/inc/main.php";
// Check token
verify_csrf($_GET);
exec(HESTIA_CMD . "v-add-cron-reports " . $user, $output, $return_var);
unset($output);
header("Location: /list/cron/");
exit();