diff --git a/includes/comment.inc b/includes/comment.inc new file mode 100644 index 0000000000000000000000000000000000000000..110283b00d07d9bebb8e0a8f04367ed1dc33ca27 --- /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; + } +} + +?>