2 /*=====================================================================*\
3 || ################################################################### ||
4 || # Bugdar [#]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 \*=====================================================================*/
13 $fetchtemplates = array(
17 define('SVN', '$Id$');
19 $focus['showreport
'] = 'focus
';
21 require_once('./global.php
');
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
'])
33 $message->error($lang->getlex('error_invalid_id
'));
36 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = $comment[bugid]");
38 if (!((can_perform('caneditownreply
', $bug['productid
']) AND $bugsys->userinfo['userid
'] == $comment['userid
']) OR (can_perform('caneditotherreply
', $bug['productid
']) AND $bugsys->userinfo['userid
'] != $comment['userid
'])))
40 $message->error_permission();
43 if ($bug['hidden
'] AND !can_perform('canviewhidden
', $bug['productid
']))
45 $message->error_permissison();
48 // ###################################################################
50 if (empty($_REQUEST['do']))
52 $_REQUEST['do'] = 'edit
';
55 // ###################################################################
57 if ($_POST['do'] == 'update
')
59 if (!$bugsys->in['comment
'])
61 $message->items[] = $lang->string('You need to enter text into the comment field
');
64 if ($bugsys->in['commentid
'] == $bug['initialreport
'] AND $bugsys->in['hidden
'])
66 $message->items[] = $lang->string('You cannot hide the first comment
/initial report of a bug
. Instead
, hide the entire bug
.');
71 $bugsys->in['comment_parsed
'] = $bugsys->in['comment
'];
73 if (!$bugsys->options['allowhtml
'])
75 $bugsys->in['comment_parsed
'] = $bugsys->sanitize($bugsys->in['comment_parsed
']);
79 UPDATE " . TABLE_PREFIX . "comment
80 SET comment = '" . $bugsys->in['comment'] . "',
81 comment_parsed = '" . nl2br($bugsys->in['comment_parsed']) . "',
82 hidden = " . intval($bugsys->in['hidden
']) . "
83 WHERE commentid = $comment[commentid]"
87 require_once('./includes
/class_history
.php
');
89 $log->bugid = $bug['bugid
'];
90 $log->commentid = $comment['commentid
'];
91 $log->log($log->diff('comment
' . $comment['commentid
'] . ' text
', $comment['comment_parsed
'], nl2br($bugsys->in['comment_parsed
'])));
92 $log->log($log->diff('comment
' . $comment['commentid
'] . ' hidden
', $comment['hidden
'], intval($bugsys->in['hidden
'])));
94 $lastgood = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "comment WHERE bugid = $bug[bugid] AND !hidden ORDER BY dateline DESC");
96 UPDATE " . TABLE_PREFIX . "bug
97 SET hiddenlastposttime = $lastgood[dateline],
98 hiddenlastpostby = $lastgood[userid]
99 WHERE bugid = $bug[bugid]"
102 $message->redirect($lang->string('The comment was modified successfully
.'), "showreport.php?bugid=$bug[bugid]");
106 $show['errors
'] = true;
107 $_REQUEST['do'] = 'edit
';
108 $message->error_list_process();
109 $comment['comment
'] = $bugsys->in['comment
'];
110 $comment['hidden
'] = $bugsys->in['hidden
'];
114 // ###################################################################
116 if ($_REQUEST['do'] == 'edit
')
118 $comment['posttime
'] = $datef->format($bugsys->options['dateformat
'], $comment['dateline
']);
119 $comment['postby
'] = construct_user_display($comment);
120 $comment['comment
'] = $bugsys->sanitize($comment['comment
']);
121 $show['hide
'] = ($bug['initialreport
'] != $comment['commentid
'] ? true : false);
122 eval('$template->flush("' . $template->fetch('editcomment') . '");');
125 /*=====================================================================*\
126 || ###################################################################
129 || ###################################################################
130 \*=====================================================================*/