Example #1
0
 public function recenttopics_output_topics_reput($event)
 {
     $topic_row = $event['tpl_ary'];
     $topic_id = $topic_row['TOPIC_ID'];
     if ($this->max_topic_thanks && !empty($this->topic_thanks)) {
         $topic_row = array_merge($topic_row, $this->helper->get_thanks_topic_reput($topic_id, $this->max_topic_thanks, $this->topic_thanks));
     }
     $event['tpl_ary'] = $topic_row;
 }