Файл: public_html/modules/share/delete_comment.php
Строк: 10
<?php
/**********************************
* @package: PerfCMS *
* @year: 2012 *
* @author: Artas *
* @link: http://perfcms.net *
* ------------------------------- *
* @package: PerfCMS Ultra *
* @year: 2013 *
* @author: wanya26ua & Tesla *
* @link: http://perfclub.ru *
**********************************/
$locate = 'in_share';
if($user['level'] < 5) { go('/'); }
if(!empty($_GET['share_id'])) {
$comments = new Comments('share', $_GET['share_id']);
$comments->delete($_GET['post_id']);
} else { go('/'); }
?>