Parse error: parse error, expecting `')'' in /home/painted/public_html/notorious/viewtopic.php on line 1208
here's my viewtopic.php file:
Code: Select all
//
// Again this will be handled by the templating
// code at some point
//
$row_color = ( !($i % 2) ) ? $themeї'td_color1'] : $themeї'td_color2'];
$row_class = ( !($i % 2) ) ? $themeї'td_class1'] : $themeї'td_class2'];
if ( $board_configї'store_view_topic'] )
{
$temp_url = append_sid("store.$phpEx?mode=user_items&id=" . $poster_id);
$user_items = '<a href="' . $temp_url . '" class="postdetails">' . $langї'Store_users_items_goto'] . '</a>';
}
else
{
$user_items = '';
}$template->assign_block_vars('postrow', array(
'ROW_COLOR' => '#' . $row_color,
'ROW_CLASS' => $row_class,
'POSTER_NAME' => $poster,
'POSTER_RANK' => $poster_rank,
'RANK_IMAGE' => $rank_image,
'POSTER_JOINED' => $poster_joined,
'POSTER_POSTS' => $poster_posts,
'POSTER_FROM' => $poster_from,
'POSTER_AVATAR' => $poster_avatar,
'POST_DATE' => $post_date,
'POST_SUBJECT' => $post_subject,
'MESSAGE' => $message,
'SIGNATURE' => $user_sig,
'EDITED_MESSAGE' => $l_edited_by,
'MINI_POST_IMG' => $mini_post_img,
'PROFILE_IMG' => $profile_img,
'PROFILE' => $profile,
'SEARCH_IMG' => $search_img,
'SEARCH' => $search,
'PM_IMG' => $pm_img,
'PM' => $pm,
'EMAIL_IMG' => $email_img,
'EMAIL' => $email,
'WWW_IMG' => $www_img,
'WWW' => $www,
'ICQ_STATUS_IMG' => $icq_status_img,
'ICQ_IMG' => $icq_img,
'ICQ' => $icq,
'AIM_IMG' => $aim_img,
'AIM' => $aim,
'MSN_IMG' => $msn_img,
'MSN' => $msn,
'YIM_IMG' => $yim_img,
'YIM' => $yim,
'EDIT_IMG' => $edit_img,
'EDIT' => $edit,
'QUOTE_IMG' => $quote_img,
'QUOTE' => $quote,
'IP_IMG' => $ip_img,
'IP' => $ip,
'DELETE_IMG' => $delpost_img,
'DELETE' => $delpost,
'L_MINI_POST_ALT' => 'USER_ITEMS' => $user_items,$mini_post_alt,
'U_MINI_POST' => $mini_post_url,
'U_POST_ID' => $postrowї$i]ї'post_id']) );
$cm_viewtopic->post_vars($postrowї$i],$userdata,$forum_id
);
}
$template->pparse('body');
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
?>can someone tell me what's wrong?