Просмотр файла modules/mail/mail_r.php

Размер файла: 1.46Kb
  1. <?php
  2. /**********************************
  3. * @package: PerfCMS *
  4. * @year: 2012 *
  5. * @author: Artas *
  6. * @link: http://perfcms.pp.ua *
  7. **********************************/
  8. $mail_r = $db->query("SELECT * FROM `mail` WHERE `id` = '".abs(intval($_GET['id'])) ."'")->fetch();
  9. if(isset($user) && $mail_r['who_id'] == $user['id']) {
  10. if(isset($_POST['send']) && $_GET['act'] == 'send') {
  11. $message = input($_POST['text']);
  12. if(!empty($message)) { $text = substr($message, 0, 5000); } else { $err = 'Message is empty'; }
  13. if(!isset($err)) {
  14. $db->query("INSERT INTO `mail` SET `user_id` = '". $user['id'] ."', `who_id` = '". $mail_r['user_id'] ."', `text` = '$text', `time` = '". time() ."', `read` = '0'");
  15. go('/mail/');
  16. }
  17. }
  18. $db->query("UPDATE `mail` SET `read` = '1' WHERE `id` = '".abs(intval($_GET['id'])) ."'");
  19. $locate = 'in_cabinet';
  20. $title = $lang->word('u_mail');
  21. require_once(SYS.'/view/header.php');
  22. $tpl->div('title', $lang->word('u_mail'));
  23. $tpl->div('post', nick($mail_r['user_id']).' '.rtime($mail_r['time']).' <br/>'.output($mail_r['text']));
  24. $tpl->div('menu', '<b>'.$lang->word('reply') .'</b>:<br/>
  25. <form action="/mail/'.$_GET['id'].'/?act=send" method="post">
  26. <textarea name="text" rows="5" cols="26"></textarea><br/>
  27. <input name="send" type="submit" value="'. $lang->word('send').'"/>
  28. </form>');
  29. $tpl->div('block', HICO. '<a href="/">'. $lang->word('home') .'</a>');
  30. require_once(SYS.'/view/footer.php');
  31. } else { go('/'); }
  32. ?>