2010-02-28 03:01:18 -08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class CustomCommentListTheme extends CommentListTheme {
|
2019-05-28 17:31:20 +01:00
|
|
|
protected function comment_to_html(Comment $comment, bool $trim=false): string {
|
2010-02-28 03:01:18 -08:00
|
|
|
return $this->rr(parent::comment_to_html($comment, $trim));
|
|
|
|
}
|
|
|
|
|
2019-05-28 17:31:20 +01:00
|
|
|
protected function build_postbox(int $image_id): string {
|
2010-02-28 03:01:18 -08:00
|
|
|
return $this->rr(parent::build_postbox($image_id));
|
|
|
|
}
|
|
|
|
}
|