Файл: share/share.delete.php
Строк: 15
<?php
include_once '../sys/inc/start.php' ;
$doc = new document(1) ;
include_once 'sys/inc/start.php' ;
$doc->title = __('Удаление закладки') ;
if(!isset($_GET['id']) || !is_numeric($_GET['id'])){
header('Location: ./') ;
exit ;
}
$id_share = (int) $_GET['id'] ;
$share = new share($id_share) ;
if(!$share->onlyMy()){
header('Location: ./') ;
exit ;
}
$doc->ret(__('Вернутся'), './') ;
$share->delete() ;
$doc->msg(__('Закладка удалена')) ;
header('Refresh: 1; ./') ;
exit ;