Usuń pierwszą edycję pliku sources/action_public/topics.php z instrukcji instalacji, potem znajdź:
$this->output = str_replace( "<!--IBF.QUICK_REPLY_OPEN-->" , $this->ipsclass->compiled_templates['skin_topic']->quick_reply_box_open($this->topic['forum_id'], $this->topic['tid'], $show, $this->md5_check), $this->output );
Zamień na:
if (strlen($this->topic['title']) >= $this->ipsclass->vars['min_search_word'])
{
$similarTopics = $this->similarTopics();
if (!empty($similarTopics))
{
$add_similar = "<br />" . $this->similarTopics();
}
}
$this->output = str_replace( "<!--IBF.QUICK_REPLY_OPEN-->" , $add_similar.$this->ipsclass->compiled_templates['skin_topic']->quick_reply_box_open($this->topic['forum_id'], $this->topic['tid'], $show, $this->md5_check), $this->output );