2009-07-06 04:31:40 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class CustomCommentListTheme extends CommentListTheme {
|
|
|
|
protected function comment_to_html($comment, $trim=false) {
|
2009-08-04 17:45:09 +01:00
|
|
|
return $this->rr(parent::comment_to_html($comment, $trim));
|
|
|
|
}
|
2009-07-06 04:31:40 -07:00
|
|
|
|
2009-08-04 17:45:09 +01:00
|
|
|
protected function build_postbox($image_id) {
|
|
|
|
return $this->rr(parent::build_postbox($image_id));
|
2009-07-06 04:31:40 -07:00
|
|
|
}
|
2010-04-20 02:24:36 +01:00
|
|
|
|
|
|
|
protected function rr($html) {
|
|
|
|
return "
|
|
|
|
<!-- cancel border -->
|
|
|
|
<div class='brr'>$html</div>
|
|
|
|
";
|
|
|
|
}
|
2009-07-06 04:31:40 -07:00
|
|
|
}
|
|
|
|
?>
|