Hallöchen,
danke sehr

Hab vergessen sie hochzuladen. Hab ich jetzt gemacht - hab wohl woanders einen Fehler gemacht. jetzt kommt folgende Meldung:
Code: Alles auswählen
Fatal error: Call to undefined function get_rating_img() in /www/htdocs/w009ae80/kramkiste/phpBB3/viewtopic.php on line 676
Hätte da auch noch jemand etwas Hilfe für mich übrig?
Hier sind die Zeilen 660 - 686
Code: Alles auswählen
'U_VIEW_NEWER_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&view=next"),
'U_PRINT_TOPIC' => ($auth->acl_get('f_print', $forum_id)) ? $viewtopic_url . '&view=print' : '',
'U_EMAIL_TOPIC' => ($auth->acl_get('f_email', $forum_id) && $config['email_enable']) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=email&t=$topic_id") : '',
'U_WATCH_TOPIC' => $s_watching_topic['link'],
'L_WATCH_TOPIC' => $s_watching_topic['title'],
'S_WATCHING_TOPIC' => $s_watching_topic['is_watching'],
'U_BOOKMARK_TOPIC' => ($user->data['is_registered'] && $config['allow_bookmarks']) ? $viewtopic_url . '&bookmark=1&hash=' . generate_link_hash("topic_$topic_id") : '',
'L_BOOKMARK_TOPIC' => ($user->data['is_registered'] && $config['allow_bookmarks'] && $topic_data['bookmarked']) ? $user->lang['BOOKMARK_TOPIC_REMOVE'] : $user->lang['BOOKMARK_TOPIC'],
'U_POST_NEW_TOPIC' => ($auth->acl_get('f_post', $forum_id) || $user->data['user_id'] == ANONYMOUS) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=post&f=$forum_id") : '',
'U_POST_REPLY_TOPIC' => ($auth->acl_get('f_reply', $forum_id) || $user->data['user_id'] == ANONYMOUS) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=reply&f=$forum_id&t=$topic_id") : '', 'U_BUMP_TOPIC' => (bump_topic_allowed($forum_id, $topic_data['topic_bumped'], $topic_data['topic_last_post_time'], $topic_data['topic_poster'], $topic_data['topic_last_poster_id'])) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=bump&f=$forum_id&t=$topic_id&hash=" . generate_link_hash("topic_$topic_id")) : '',
//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,$_SID) : '',
'U_RATING_SUBMIT' => ($user_is_registered && !$user_has_rated) ? "{$phpbb_root_path}topic_rating.$phpEx" : '')
//END MOD
);
// Does this topic contain a poll?
if (!empty($topic_data['poll_start']))