401 | //include($phpbb_root_path . 'modules/ratings/functions_ratings.' . $phpEx); | 401 | include($phpbb_root_path . 'modules/ratings/functions_ratings.' . $phpEx); |
402 | include($phpbb_root_path . 'modules/ratings/functions_ratings1.' . $phpEx); | 402 | $topic_ratings = get_topic_rating($forum_id, $topic_ids); |
403 | //$topic_ratings = get_topic_rating($forum_id, $topic_ids); | | |
404 | | | |
405 | $idata = array(); | | |
406 | foreach ($topic_ids as $id) | | |
407 | { | | |
408 | $idata[$id] = array( | | |
409 | 'active' => $topic_data[$id]['topic_status'], | | |
410 | 'poster' => $topic_data[$id]['topic_poster'] | | |
411 | ); | | |
412 | } | | |
413 | $topic_ratings = get_topic_rating('', 'content', $idata, true, '5-star'); | | |
414 | //echo '<pre>'; | | |
415 | //print_r($rdata); | | |
416 | //echo '</pre>'; | | |