fembooru/themes/lite/comment.theme.php

12 lines
296 B
PHP
Raw Normal View History

2010-02-28 03:01:18 -08:00
<?php
class CustomCommentListTheme extends CommentListTheme {
protected function comment_to_html($comment, $trim=false) {
return $this->rr(parent::comment_to_html($comment, $trim));
}
protected function build_postbox($image_id) {
return $this->rr(parent::build_postbox($image_id));
}
}