Файл: modules/news/add_comment.php
Строк: 35
<?php
$locate = 'in_news';
if(!isset($user)) { go('/'); }
if(!empty($_GET['news_id'])) {
if(isset($_POST['create']) && $_GET['act'] == 'create') {
$comments = new Comments('news', $_GET['news_id']);
$comments->add($_POST['text']);
}
//$title = $lang->word('add_comment');
//require_once(SYS.'/view/header.php');
//$tpl->div('title', $lang->word('add_comment'));
//echo '<form action="/news/add_comment/?act=create&news_id='.abs(intval($_GET['news_id'])) .'" method="post">
// <div class="menu">
// <b>'. $lang->word('message') .'</b>:<br/>
// <textarea name="text" rows="5" cols="26">'.(isset($_GET['reply_to']) ? '[b]'.input($_GET['reply_to']).'[/b], ' : NULL).'</textarea><br/>
// <input name="create" type="submit" value="'. $lang->word('create') .'" /><br/>
// </div>
// </form>';
//
//$tpl->div('block', img('news.png') .'<a href="/news/">'. $lang->word('news') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
//require_once(SYS.'/view/footer.php');
} else { go('/'); }
?>