any 1 for the help here?
I installed this mod n m getting error on line 669 in viewtopic.php n the line is-
Code: Select all
,'TOPIC_RATING' => $topic_data['topic_rating'],
which has to be added according to the mod
Code: Select all
//MOD Ratings for topics
,'TOPIC_RATING' => $topic_data['topic_rating'],
'TOPIC_RATING_TOTAL_VOTES' => $topic_data['topic_rating_total_votes'],
'RATING_ICONS' => get_rating_img($topic_data['topic_rating'], $topic_data['topic_rating_total_votes']),
'RATING_MESSAGE' => $rating_message,
//show ratingbox only for authorised user who is registered and has not rated, also show only if rating is not locked and topic is not locked
'S_RATING_BOX' => $auth->acl_get('f_post',$forum_id) && $topic_data['topic_rating_status'] == ITEM_UNLOCKED && $topic_data['topic_status'] == ITEM_UNLOCKED && ($user_is_registered && !$user_has_rated) && $topic_data['topic_poster'] != $user->data['user_id'],
'RATING_BOX' => ($user_is_registered && !$user_has_rated) ? make_ratingbox($topic_id) : '',
'U_RATING_SUBMIT' => ($user_is_registered && !$user_has_rated) ? "{$phpbb_root_path}ratetopic.$phpEx" : ''
//END MOD