mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-08-07 17:09:57 +02:00
13 lines
295 B
PHP
13 lines
295 B
PHP
<?php
|
|
// Init
|
|
error_reporting(NULL);
|
|
ob_start();
|
|
session_start();
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
v_exec('v-delete-cron-reports', [$user], false);
|
|
$_SESSION['error_msg'] = __('Cronjob email reporting has been successfully disabled');
|
|
|
|
header("Location: /list/cron/");
|
|
exit;
|