File size: 1.17Kb
<?php
/**********************************
* @package: PerfCMS *
* @year: 2012 *
* @author: Artas *
* @link: http://perfcms.pp.ua *
**********************************/
$locate = 'in_chat';
if($user['level'] == 2 || $user['level'] >= 6) {
if(isset($_GET['post_id'])) {
if(isset($_POST['yes'])) {
$db->query("DELETE FROM `chat_p` WHERE `id` = '".abs(intval($_GET['post_id']))."'");
header('Location: /chat/');
} elseif(isset($_POST['no'])) {
header('Location: /chat/');
}
$title = $lang->word('delete');
require_once(SYS.'/view/header.php');
$tpl->div('title', $lang->word('delete'));
echo '<form action="/chat/del_post/?post_id='.abs(intval($_GET['post_id'])).'" method="post">
<div class="menu">
<b>'. $lang->word('r_sure') .'</b><br/>
<input name="yes" type="submit" value="'. $lang->word('yyes') .'" /> <input name="no" type="submit" value="'. $lang->word('yno') .'" /><br/>
</div>
</form>';
$tpl->div('block', NAV .'<a href="/chat/">'. $lang->word('chat') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
require_once(SYS.'/view/footer.php');
} else { header('Location: /'); }
} else { header('Location: /'); }
?>