mirror of
https://github.com/serghey-rodin/vesta.git
synced 2026-02-17 20:07:23 +01:00
19 lines
447 B
PHP
19 lines
447 B
PHP
<?php
|
|
|
|
echo 'delete Favorites<br>';
|
|
|
|
|
|
error_reporting(NULL);
|
|
ob_start();
|
|
session_start();
|
|
|
|
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");
|
|
|
|
$v_section = escapeshellarg($_REQUEST['v_section']);
|
|
$v_unit_id = escapeshellarg($_REQUEST['v_unit_id']);
|
|
|
|
exec (VESTA_CMD."v-delete-user-favourites ".$_SESSION['user']." ".$v_section." ".$v_unit_id, $output, $return_var);
|
|
check_return_code($return_var,$output);
|
|
|
|
|
|
?>
|