From 07aae7e8f8b752e6b37b338783a6d6fef290ee10 Mon Sep 17 00:00:00 2001
From: Starla Insigna <hatkirby@fourisland.com>
Date: Sun, 7 Dec 2008 17:27:58 -0500
Subject: Removed comment rating system

---
 includes/comments.php | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

(limited to 'includes/comments.php')

diff --git a/includes/comments.php b/includes/comments.php
index 682aa0e..ca5528e 100755
--- a/includes/comments.php
+++ b/includes/comments.php
@@ -68,19 +68,11 @@ while ($getcomments3[$i] = mysql_fetch_array($getcomments2))
 
 	if (isset($username))
 	{
-		if ($getcomments3[$i]['rating'] > -2)
-		{
-			$text = parseBBCode($getcomments3[$i]['comment']);
-		} else {
-			$text = 'This comment has been rated down below the threshold for public viewing (-1), suggesting that it may contain inappropriate or off topic content. (Or it may have been flame bait, or simply bad!)';
-		}
-
 		$template->add_ref($curID, 'COMMENTS', array(	'CODEDEMAIL' => md5(strtolower($email)),
 								'USERNAME' => (($website != '') ? '<A HREF="http://' . $website . '">' . $username . '</A>' : $username),
 								'DATE' => date("F dS Y \a\\t g:i:s a",strtotime($getcomments3[$i]['posttime'])),
-								'RATING' => $getcomments3[$i]['rating'],
 								'ID' => $getcomments3[$i]['id'],
-								'TEXT' => $text));
+								'TEXT' => parseBBCode($getcomments3[$i]['comment'])));
 	}
 	$i++;
 }
-- 
cgit 1.4.1