mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-04 20:50:23 -08:00
20 lines
466 B
PHP
20 lines
466 B
PHP
<?php
|
|
// Init
|
|
error_reporting(NULL);
|
|
ob_start();
|
|
session_start();
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Check token
|
|
if ((!isset($_GET['token'])) || ($_SESSION['token'] != $_GET['token'])) {
|
|
header('location: /login/');
|
|
exit();
|
|
}
|
|
|
|
exec (VESTA_CMD."v-add-cron-reports ".$user, $output, $return_var);
|
|
$_SESSION['error_msg'] = __('Cronjob email reporting has been successfully enabled');
|
|
unset($output);
|
|
|
|
header("Location: /list/cron/");
|
|
exit;
|