1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00
2015-12-02 21:30:04 +09:00

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;