Размер файла: 1.15Kb
- <?php
- /**********************************
- * @package: PerfCMS *
- * @year: 2012 *
- * @author: Artas *
- * @link: http://perfcms.pp.ua *
- **********************************/
- $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]'.tnick($_GET['reply_to']).'[/b], ' : NULL).'</textarea><br/>
- <input name="create" type="submit" value="'. $lang->word('create') .'" /><br/>
- </div>
- </form>';
-
- $tpl->div('block', NAV .'<a href="/news/">'. $lang->word('news') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
- require_once(SYS.'/view/footer.php');
- } else { go('/'); }
- ?>