Witam zainstalowałem mod
Color Ranks 1.4 i przy próbie otwarcia jakiegoś tematu otrzymuję następujacy błąd:
Cytuj:
Parse error: syntax error, unexpected T_IF in c:\usr\apache\httpd\html\viewtopic.php on line 873
Poniżej zamieszczam linie 860 - 890 mam nadzieję, że będziecie potrafili mi pomóc:
[php]
$mini_post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $postrow[$i]['post_id']) . '#' . $postrow[$i]['post_id'];
//
// Generate ranks, set them to empty string initially.
//
$poster_rank =
color_rank($postrow[$i]['user_rank'],$postrow[$i]['user_posts']);
$rank_image=''
//
// Handle anon users posting with usernames
//
if ( $poster_id == ANONYMOUS && $postrow[$i]['post_username'] != '' )
{
$poster = $postrow[$i]['post_username'];
$poster_rank = $lang['Guest'];
}
if ( $poster_id == ANONYMOUS && $postrow[$i]['post_username'] == '' )
{
$poster = $lang['Guest'];
$poster_rank='';
}
$temp_url = '';
if ( $poster_id != ANONYMOUS )
{
$temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$poster_id");
$profile_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_profile'] . '" alt="' . $lang['Read_profile'] . '" title="' . $lang['Read_profile'] . '" border="0" /></a>';
[/php]
Pozdrawiam!