Файл: user/avatar_comm_del.php
Строк: 36
<?php
/* DCMS S (Special)
* Версия файла 0.0.1
* Дата последнего редактирования 27.10.2015
* Модифицировал densnet
*/
require_once '../sys/inc/start.php';
require_once H . 'sys/inc/compress.php';
require_once H . 'sys/inc/sess.php';
require_once H . 'sys/inc/settings.php';
require_once H . 'sys/inc/db_connect.php';
require_once H . 'sys/inc/ipua.php';
require_once H . 'sys/inc/fnc.php';
require_once H . 'sys/inc/user.php';
if (isset($_GET['id']) && mysql_result(mysql_query("SELECT COUNT(*) FROM `avatar_comments` WHERE `id` = '" . intval($_GET['id']) . "'"), 0) == 1) {
$post = mysql_fetch_assoc(mysql_query("SELECT * FROM `avatar_comments` WHERE `id` = '" . intval($_GET['id']) . "' LIMIT 1"));
$ank = get_user($post['id_user']);
if ($user['group_access'] >= 7 || $user['id'] == $ank['id']) {
admin_log('Аватарка', 'Удаление сообщения', "Удаление сообщения от $ank[nick]");
mysql_query("DELETE FROM `avatar_comments` WHERE `id` = '$post[id]'");
}
}
if (isset($_SERVER['HTTP_REFERER']) && $_SERVER['HTTP_REFERER'] != NULL) {
header("Location: " . $_SERVER['HTTP_REFERER']);
} else {
header("Location: index.php?" . SID);
}