Просмотр файла modules/forum/edit_topic.php

Размер файла: 1.91Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.ru *
  7. **********************************/
  8. $locate = 'in_forum';
  9. if($user['level'] < '5' || !isset($_GET['topic_id'])) { go('/'); exit;}
  10. if($db->query("SELECT * FROM `forum_pt` WHERE `topic_id` = '". abs(intval($_GET['topic_id'])) ."'")->rowCount() == 0) {
  11. go('/forum/');
  12. exit;
  13. }
  14. $edit_t = $db->query("SELECT * FROM `forum_t` WHERE `id` = '". abs(intval($_GET['topic_id'])) ."' LIMIT 1")->fetch();
  15. $edit_topic = $db->query("SELECT * FROM `forum_pt` WHERE `topic_id` = '". abs(intval($_GET['topic_id'])) ."' LIMIT 1")->fetch();
  16. if(isset($_POST['edit']) && $_GET['act'] == 'edit') {
  17. $name = substr(input($_POST['name']), 0, 100);
  18. $text = substr(input($_POST['text']), 0, 10000);
  19.  
  20. $db->query("UPDATE `forum_pt` SET `name` = '".$name."', `text` = '". $text ."' WHERE `topic_id` = '". abs(intval($_GET['topic_id'])) ."' LIMIT 1");
  21. $db->query("UPDATE `forum_t` SET `name` = '".$name."' WHERE `id` = '". abs(intval($_GET['topic_id'])) ."'");
  22. go('/forum/topic'. abs(intval($_GET['topic_id'])));
  23. // print_r($db->errorInfo());
  24. }
  25. $title = $lang->word('edit_topic');
  26. require_once(SYS.'/view/header.php');
  27. $tpl->div('title', $lang->word('edit_topic'));
  28. echo '<form action="/forum/edit_topic/'. abs(intval($_GET['topic_id'])) .'/?act=edit" method="post">
  29. <div class="menu">
  30. <b>'. $lang->word('name') .'</b>:<br/>
  31. <input name="name" type="text" value="'. $edit_t['name'] .'" /><br/>
  32. <b>'. $lang->word('message') .'</b>:<br/>
  33. <textarea name="text" rows="5" cols="26">'. $edit_topic['text'] .'</textarea><br/>
  34. <input name="edit" type="submit" value="'. $lang->word('edit') .'" /><br/>
  35. </div>
  36. </form>';
  37. $tpl->div('block', NAV .'<a href="/forum/">'. $lang->word('forum') .'</a><br/>' . HICO .'<a href="/">'. $lang->word('home').'</a>');
  38. require_once(SYS.'/view/footer.php');
  39. ?>