- 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 done3-00
parent
819543f7b2
commit
aa1b366deb
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue