mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-03-12 04:36:25 -07:00
39 lines
691 B
PHP
39 lines
691 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;
|
|
}
|
|
|
|
// Check user
|
|
if ($_SESSION['user'] != 'admin') {
|
|
header("Location: /list/user");
|
|
exit;
|
|
}
|
|
|
|
if (!empty($_GET['user'])) {
|
|
$user = $_GET['user'];
|
|
}
|
|
|
|
if (!empty($_GET['job'])) {
|
|
$v_username = $user;
|
|
$v_job = $_GET['job'];
|
|
v_exec('v-unsuspend-cron-job', [$v_username, $v_job]);
|
|
}
|
|
|
|
$back = getenv('HTTP_REFERER');
|
|
if (!empty($back)) {
|
|
header("Location: $back");
|
|
exit;
|
|
}
|
|
|
|
header("Location: /list/cron/");
|
|
exit;
|