diff options
-rw-r--r-- | includes/comment.inc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/includes/comment.inc b/includes/comment.inc new file mode 100644 index 000000000..110283b00 --- /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; + } +} + +?> |