From aa1b366deb52d9866fd93ad083a97f24be452394 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Fri, 3 Nov 2000 08:11:19 +0000
Subject: [PATCH] - fixed bug in search.php - fixed bug in discussion.php -
 theme update: comment() now takes 3 arguments:     $comment - an object with
 comment data     $link    - a link to the reply form of that particular      
          comment     $thread  - the subthread of that particular comment -
 theme 'marvin' and theme 'zaphod' are updated, theme   'unconed' is left to
 be done

---
 includes/comment.inc | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 includes/comment.inc

diff --git a/includes/comment.inc b/includes/comment.inc
new file mode 100644
index 000000000000..110283b00d07
--- /dev/null
+++ b/includes/comment.inc
@@ -0,0 +1,17 @@
+<?
+
+class Comment {
+  function Comment($userid, $subject, $comment, $timestamp, $url, $fake_email, $score, $votes, $cid) {
+    $this->userid = $userid;
+    $this->subject = $subject;
+    $this->comment = $comment;
+    $this->timestamp = $timestamp;
+    $this->url = $url;
+    $this->fake_email = $fake_email;
+    $this->score = $score;
+    $this->votes = $votes;
+    $this->cid = $cid;
+  }
+}
+
+?>
-- 
GitLab