2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Iris Studios, Inc.
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
22 $fetchtemplates = array(
26 define('SVN', '$Id$');
28 $focus['showreport
'] = 'focus
';
30 require_once('./global.php
');
32 $comment = $db->query_first("
33 SELECT comment.*, user.email, user.showemail, user.displayname
34 FROM " . TABLE_PREFIX . "comment AS comment
35 LEFT JOIN " . TABLE_PREFIX . "user AS user
36 ON (comment.userid = user.userid)
37 WHERE comment.commentid = " . intval($bugsys->in['commentid
'])
42 $message->error($lang->getlex('error_invalid_id
'));
45 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = $comment[bugid]");
47 if (!((can_perform('caneditownreply
', $bug['productid
']) AND $bugsys->userinfo['userid
'] == $comment['userid
']) OR (can_perform('caneditotherreply
', $bug['productid
']) AND $bugsys->userinfo['userid
'] != $comment['userid
'])))
49 $message->error_permission();
52 if ($bug['hidden
'] AND !can_perform('canviewhidden
', $bug['productid
']))
54 $message->error_permissison();
57 // ###################################################################
59 if (empty($_REQUEST['do']))
61 $_REQUEST['do'] = 'edit
';
64 // ###################################################################
66 if ($_POST['do'] == 'update
')
68 if (!$bugsys->in['comment
'])
70 $message->items[] = $lang->string('You need to enter text into the comment field
');
73 if ($bugsys->in['commentid
'] == $bug['initialreport
'] AND $bugsys->in['hidden
'])
75 $message->items[] = $lang->string('You cannot hide the first comment
/initial report of a bug
. Instead
, hide the entire bug
.');
80 $bugsys->in['comment_parsed
'] = $bugsys->in['comment
'];
82 if (!$bugsys->options['allowhtml
'])
84 $bugsys->in['comment_parsed
'] = $bugsys->sanitize($bugsys->in['comment_parsed
']);
88 UPDATE " . TABLE_PREFIX . "comment
89 SET comment = '" . $bugsys->in['comment'] . "',
90 comment_parsed = '" . nl2br($bugsys->in['comment_parsed']) . "',
91 hidden = " . intval($bugsys->in['hidden
']) . "
92 WHERE commentid = $comment[commentid]"
96 require_once('./includes
/class_history
.php
');
98 $log->bugid = $bug['bugid
'];
99 $log->commentid = $comment['commentid
'];
100 $log->log($log->diff('comment
' . $comment['commentid
'] . ' text
', $comment['comment_parsed
'], nl2br($bugsys->in['comment_parsed
'])));
101 $log->log($log->diff('comment
' . $comment['commentid
'] . ' hidden
', $comment['hidden
'], intval($bugsys->in['hidden
'])));
103 $lastgood = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "comment WHERE bugid = $bug[bugid] AND !hidden ORDER BY dateline DESC");
105 UPDATE " . TABLE_PREFIX . "bug
106 SET hiddenlastposttime = $lastgood[dateline],
107 hiddenlastpostby = $lastgood[userid]
108 WHERE bugid = $bug[bugid]"
111 $message->redirect($lang->string('The comment was modified successfully
.'), "showreport.php?bugid=$bug[bugid]");
115 $show['errors
'] = true;
116 $_REQUEST['do'] = 'edit
';
117 $message->error_list_process();
118 $comment['comment
'] = $bugsys->in['comment
'];
119 $comment['hidden
'] = $bugsys->in['hidden
'];
123 // ###################################################################
125 if ($_REQUEST['do'] == 'edit
')
127 $comment['posttime
'] = $datef->format($bugsys->options['dateformat
'], $comment['dateline
']);
128 $comment['postby
'] = construct_user_display($comment);
129 $comment['comment
'] = $bugsys->sanitize($comment['comment
']);
130 $show['hide
'] = ($bug['initialreport
'] != $comment['commentid
'] ? true : false);
131 eval('$template->flush("' . $template->fetch('editcomment') . '");');
134 /*=====================================================================*\
135 || ###################################################################
138 || ###################################################################
139 \*=====================================================================*/