View file Web Template Ktpl/package/system/controllers/ktpl/hooks/comments_before_list.php
<?php
class onKtplCommentsBeforeList extends cmsAction {
public function run($comments){
if(!$this->options['filter_on_comments']) return $comments;
foreach ($comments as $comment) {
$comments[$comment['id']]['content_html'] = $this->text_filter($comments[$comment['id']]['content_html']);
}
return $comments;
}
}