mirror of
https://github.com/myvesta/vesta.git
synced 2024-12-22 03:51:19 -08:00
22 lines
618 B
PHP
22 lines
618 B
PHP
<?
|
|
|
|
error_reporting(NULL);
|
|
session_start();
|
|
|
|
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
// Check token
|
|
if ((!isset($_REQUEST['token'])) || ($_SESSION['token'] != $_REQUEST['token'])) {
|
|
die("Wrong token");
|
|
}
|
|
|
|
// Protect input
|
|
$v_section = escapeshellarg($_REQUEST['v_section']);
|
|
$v_unit_id = escapeshellarg($_REQUEST['v_unit_id']);
|
|
|
|
$_SESSION['favourites'][strtoupper($_REQUEST['v_section'])][$_REQUEST['v_unit_id']] = 1;
|
|
|
|
exec (VESTA_CMD."v-add-user-favourites ".$_SESSION['user']." ".$v_section." ".$v_unit_id, $output, $return_var);
|
|
// check_return_code($return_var,$output);
|
|
?>
|