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