r380: Converting some hard-coded text to the language system
[bugdar.git] / editcomment.php
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # BugStrike [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12
13 $fetchtemplates = array(
14 'editcomment'
15 );
16
17 define('SVN', '$Id$');
18
19 $focus['showreport'] = 'focus';
20
21 require_once('./global.php');
22
23 $comment = $db->query_first("
24 SELECT comment.*, user.email, user.showemail, user.displayname
25 FROM " . TABLE_PREFIX . "comment AS comment
26 LEFT JOIN " . TABLE_PREFIX . "user AS user
27 ON (comment.userid = user.userid)
28 WHERE comment.commentid = " . intval($bugsys->in['commentid'])
29 );
30
31 if (!$comment)
32 {
33 $message->error(lang::p('invalid_comment_id'));
34 }
35
36 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = $comment[bugid]");
37
38 if (!((can_perform('caneditown') AND $bugsys->userinfo['userid'] == $comment['userid']) OR can_perform('caneditothers')))
39 {
40 $message->error_permission();
41 }
42
43 if ($bug['hidden'] AND !can_perform('canviewhidden'))
44 {
45 $message->error_permissison();
46 }
47
48 // ###################################################################
49
50 if (empty($_REQUEST['do']))
51 {
52 $_REQUEST['do'] = 'edit';
53 }
54
55 // ###################################################################
56
57 if ($_POST['do'] == 'update')
58 {
59 if (!$bugsys->in['comment'])
60 {
61 $message->error(lang::r('you need to enter some text'));
62 }
63
64 $bugsys->in['comment_parsed'] = $bugsys->in['comment'];
65
66 if (!$bugsys->options['allowhtml'])
67 {
68 $bugsys->in['comment_parsed'] = $bugsys->sanitize($bugsys->in['comment_parsed']);
69 }
70
71 $db->query("
72 UPDATE " . TABLE_PREFIX . "comment
73 SET comment = '" . $bugsys->in['comment'] . "',
74 comment_parsed = '" . nl2br($bugsys->in['comment_parsed']) . "',
75 hidden = " . intval($bugsys->in['hidden']) . "
76 WHERE commentid = $comment[commentid]"
77 );
78
79 // setup logging
80 require_once('./includes/class_history.php');
81 $log = new History();
82 $log->bugid = $bug['bugid'];
83 $log->language = 'log_update_comment';
84 $log->arguments = array($comment['commentid']);
85 $log->log();
86 $log->log($log->diff('hidden', $comment['hidden'], intval($bugsys->in['hidden'])));
87
88 $lastgood = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "comment WHERE bugid = $bug[bugid] AND !hidden ORDER BY dateline DESC");
89 $db->query("
90 UPDATE " . TABLE_PREFIX . "bug
91 SET hiddenlastposttime = $lastgood[dateline],
92 hiddenlastpostby = $lastgood[userid]
93 WHERE bugid = $bug[bugid]"
94 );
95
96 $message->redirect(lang::r('comment saved'), "showreport.php?bugid=$bug[bugid]");
97 }
98
99 // ###################################################################
100
101 if ($_REQUEST['do'] == 'edit')
102 {
103 $comment['posttime'] = $datef->format($bugsys->options['dateformat'], $comment['dateline']);
104 $comment['postby'] = construct_user_display($comment);
105 $comment['comment'] = $bugsys->sanitize($comment['comment']);
106 eval('$template->flush("' . $template->fetch('editcomment') . '");');
107 }
108
109 /*=====================================================================*\
110 || ###################################################################
111 || # $HeadURL$
112 || # $Id$
113 || ###################################################################
114 \*=====================================================================*/
115 ?>