From affc371339835e83576483e7475dd966c1cfcb9e Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 15 Jan 2006 08:23:38 +0000 Subject: [PATCH] r723: We don't need newcomment.php anymore... --- newcomment.php | 71 -------------------------------------------------- 1 file changed, 71 deletions(-) delete mode 100644 newcomment.php diff --git a/newcomment.php b/newcomment.php deleted file mode 100644 index 20df7b5..0000000 --- a/newcomment.php +++ /dev/null @@ -1,71 +0,0 @@ -query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = " . intval($bugsys->in['bugid'])); -if (!$bug) -{ - $message->error($lang->getlex('error_invalid_id')); -} - -if (!can_perform('canpostcomments', $bug['productid'])) -{ - $message->error_permission(); -} - -// ################################################################### - -if ($_POST['do'] == 'insert') -{ - $bugsys->in['comment_parsed'] = $bugsys->in['comment']; - - if (!$bugsys->options['allowhtml']) - { - $bugsys->in['comment_parsed'] = $bugsys->sanitize($bugsys->in['comment_parsed']); - } - - $time = TIMENOW; - - $db->query(" - INSERT INTO " . TABLE_PREFIX . "comment - (bugid, userid, dateline, comment, comment_parsed) - VALUES - (" . intval($bugsys->in['bugid']) . ", " . $bugsys->userinfo['userid'] . ", - $time, '" . $bugsys->in['comment'] . "', - '" . nl2br($bugsys->in['comment_parsed']) . "' - )" - ); - - $commentid = $db->insert_id(); - - $db->query(" - UPDATE " . TABLE_PREFIX . "bug - SET lastposttime = $time, - lastpostby = " . $bugsys->userinfo['userid'] . ", - hiddenlastposttime = $time, - hiddenlastpostby = " . $bugsys->userinfo['userid'] . " - WHERE bugid = " . intval($bugsys->in['bugid']) - ); - - $message->redirect($lang->string('Your reply has been added to the comment list.'), "showreport.php?bugid=" . intval($bugsys->in['bugid'])); -} - -/*=====================================================================*\ -|| ################################################################### -|| # $HeadURL$ -|| # $Id$ -|| ################################################################### -\*=====================================================================*/ -?> \ No newline at end of file -- 2.22.5