home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpbb2plus / phpBB2_plus_1.52.exe / phpBB2 / viewtopic.php < prev   
PHP Script  |  2004-11-18  |  65KB  |  1,592 lines

  1. <?php
  2. /***************************************************************************
  3.  *                               viewtopic.php
  4.  *                            -------------------
  5.  *   begin                : Saturday, Feb 13, 2001
  6.  *   copyright            : (C) 2001 The phpBB Group
  7.  *   email                : support@phpbb.com
  8.  *
  9.  *   $Id: viewtopic.php,v 1.186.2.35 2004/03/13 15:08:23 acydburn Exp $
  10.  *
  11.  *
  12.  ***************************************************************************/
  13.  
  14. /***************************************************************************
  15.  *
  16.  *   This program is free software; you can redistribute it and/or modify
  17.  *   it under the terms of the GNU General Public License as published by
  18.  *   the Free Software Foundation; either version 2 of the License, or
  19.  *   (at your option) any later version.
  20.  *
  21.  ***************************************************************************/
  22.  
  23. define('IN_PHPBB', true);
  24. $phpbb_root_path = './';
  25. include($phpbb_root_path . 'extension.inc');
  26. include($phpbb_root_path . 'common.'.$phpEx);
  27. include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
  28. include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx);
  29. //-- mod : post icon -------------------------------------------------------------------------------
  30. //-- add
  31. include($phpbb_root_path . 'includes/def_icons.'. $phpEx);
  32. //-- fin mod : post icon ---------------------------------------------------------------------------
  33. //-- add
  34. include_once($phpbb_root_path . 'includes/functions_calendar.'.$phpEx);
  35. //-- fin mod : calendar ----------------------------------------------------------------------------
  36. include($phpbb_root_path . 'includes/functions_bookmark.'.$phpEx);
  37. //
  38. // Start initial var setup
  39. //
  40. $topic_id = $post_id = 0;
  41. if ( isset($HTTP_GET_VARS[POST_TOPIC_URL]) )
  42. {
  43.     $topic_id = intval($HTTP_GET_VARS[POST_TOPIC_URL]);
  44. }
  45. else if ( isset($HTTP_GET_VARS['topic']) )
  46. {
  47.     $topic_id = intval($HTTP_GET_VARS['topic']);
  48. }
  49.  
  50. if ( isset($HTTP_GET_VARS[POST_POST_URL]))
  51. {
  52.     $post_id = intval($HTTP_GET_VARS[POST_POST_URL]);
  53. }
  54.  
  55.  
  56. $start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) : 0;
  57.  
  58. if ( !isset($topic_id) && !isset($post_id) )
  59. {
  60.     message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
  61. }
  62.  
  63. //
  64. // Find topic id if user requested a newer
  65. // or older topic
  66. //
  67. if ( isset($HTTP_GET_VARS['view']) && empty($HTTP_GET_VARS[POST_POST_URL]) )
  68. {
  69.     if ( $HTTP_GET_VARS['view'] == 'newest' )
  70.     {
  71.         if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) || isset($HTTP_GET_VARS['sid']) )
  72.         {
  73.             $session_id = isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid']) ? $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_sid'] : $HTTP_GET_VARS['sid'];
  74.             
  75.             if (!preg_match('/^[A-Za-z0-9]*$/', $session_id)) 
  76.             {
  77.                 $session_id = '';
  78.             }
  79.             
  80.             if ( $session_id )
  81.             {
  82.                 $sql = "SELECT p.post_id
  83.                     FROM " . POSTS_TABLE . " p, " . SESSIONS_TABLE . " s,  " . USERS_TABLE . " u
  84.                     WHERE s.session_id = '$session_id'
  85.                         AND u.user_id = s.session_user_id
  86.                         AND p.topic_id = $topic_id
  87.                         AND p.post_time >= u.user_lastvisit
  88.                     ORDER BY p.post_time ASC
  89.                     LIMIT 1";
  90.                 if ( !($result = $db->sql_query($sql)) )
  91.                 {
  92.                     message_die(GENERAL_ERROR, 'Could not obtain newer/older topic information', '', __LINE__, __FILE__, $sql);
  93.                 }
  94.  
  95.                 if ( !($row = $db->sql_fetchrow($result)) )
  96.                 {
  97.                     message_die(GENERAL_MESSAGE, 'No_new_posts_last_visit');
  98.                 }
  99.  
  100.                 $post_id = $row['post_id'];
  101.  
  102.                 if (isset($HTTP_GET_VARS['sid']))
  103.                 {
  104.                     redirect("viewtopic.$phpEx?sid=$session_id&" . POST_POST_URL . "=$post_id#$post_id");
  105.                 }
  106.                 else
  107.                 {
  108.                     redirect("viewtopic.$phpEx?" . POST_POST_URL . "=$post_id#$post_id");
  109.                 }
  110.             }
  111.         }
  112.  
  113.         redirect(append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id", true));
  114.     }
  115.     else if ( $HTTP_GET_VARS['view'] == 'next' || $HTTP_GET_VARS['view'] == 'previous' )
  116.     {
  117.         $sql_condition = ( $HTTP_GET_VARS['view'] == 'next' ) ? '>' : '<';
  118.         $sql_ordering = ( $HTTP_GET_VARS['view'] == 'next' ) ? 'ASC' : 'DESC';
  119.  
  120.         $sql = "SELECT t.topic_id
  121.             FROM " . TOPICS_TABLE . " t, " . TOPICS_TABLE . " t2
  122.             WHERE
  123.                 t2.topic_id = $topic_id
  124.                 AND t.forum_id = t2.forum_id
  125.                 AND t.topic_last_post_id $sql_condition t2.topic_last_post_id
  126.             ORDER BY t.topic_last_post_id $sql_ordering
  127.             LIMIT 1";
  128.         if ( !($result = $db->sql_query($sql)) )
  129.         {
  130.             message_die(GENERAL_ERROR, "Could not obtain newer/older topic information", '', __LINE__, __FILE__, $sql);
  131.         }
  132.  
  133.         if ( $row = $db->sql_fetchrow($result) )
  134.         {
  135.             $topic_id = intval($row['topic_id']);
  136.             //-- mod : categories hierarchy --------------------------------------------------------------------
  137. //-- add
  138.             redirect( "./viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id" );
  139. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  140.  
  141.         }
  142.         else
  143.         {
  144.             $message = ( $HTTP_GET_VARS['view'] == 'next' ) ? 'No_newer_topics' : 'No_older_topics';
  145.             message_die(GENERAL_MESSAGE, $message);
  146.         }
  147.     }
  148. }
  149.  
  150. //
  151. // This rather complex gaggle of code handles querying for topics but
  152. // also allows for direct linking to a post (and the calculation of which
  153. // page the post is on and the correct display of viewtopic)
  154. //
  155. $join_sql_table = ( empty($post_id) ) ? '' : ", " . POSTS_TABLE . " p, " . POSTS_TABLE . " p2 ";
  156. $join_sql = ( empty($post_id) ) ? "t.topic_id = $topic_id" : "p.post_id = $post_id AND t.topic_id = p.topic_id AND p2.topic_id = p.topic_id AND p2.post_id <= $post_id";
  157. $count_sql = ( empty($post_id) ) ? '' : ", COUNT(p2.post_id) AS prev_posts";
  158.  
  159. $order_sql = ( empty($post_id) ) ? '' : "GROUP BY p.post_id, t.topic_id, t.topic_title, t.topic_status, t.topic_replies, t.topic_time, t.topic_type, t.topic_vote, t.topic_last_post_id, f.forum_name, f.forum_status, f.forum_id, f.auth_view, f.auth_read, f.auth_post, f.auth_reply, f.auth_edit, f.auth_delete, f.auth_sticky, f.auth_announce, f.auth_pollcreate, f.auth_vote, f.auth_attachments, f.auth_ban, f.auth_greencard, f.auth_bluecard ORDER BY p.post_id ASC";
  160. //-- mod : calendar --------------------------------------------------------------------------------
  161. // here we added
  162. //    , t.topic_first_post_id, t.topic_calendar_time, t.topic_calendar_duration
  163. //-- modify
  164.  
  165. $sql = "SELECT t.topic_id, t.topic_title, t.topic_status, t.topic_replies, t.topic_time, t.topic_type, t.topic_vote, t.topic_last_post_id, t.topic_first_post_id, t.topic_calendar_time, t.topic_calendar_duration, f.forum_name, f.forum_status, f.forum_id, f.auth_view, f.auth_read, f.auth_post, f.auth_reply, f.auth_edit, f.auth_delete, f.auth_sticky, f.auth_announce, f.auth_pollcreate, f.auth_vote, f.auth_attachments, f.auth_ban, f.auth_greencard, f.auth_bluecard" . $count_sql . "
  166.     FROM " . TOPICS_TABLE . " t, " . FORUMS_TABLE . " f" . $join_sql_table . "
  167.     WHERE $join_sql
  168.         AND f.forum_id = t.forum_id
  169.         $order_sql";
  170.         attach_setup_viewtopic_auth($order_sql, $sql);
  171. if ( !($result = $db->sql_query($sql)) )
  172. {
  173.     message_die(GENERAL_ERROR, "Could not obtain topic information", '', __LINE__, __FILE__, $sql);
  174. }
  175.  
  176. if ( !($forum_topic_data = $db->sql_fetchrow($result)) )
  177. {
  178.     message_die(GENERAL_MESSAGE, 'Topic_post_not_exist');
  179. }
  180.  
  181. $forum_id = intval($forum_topic_data['forum_id']);
  182.  
  183. // Start add - Who viewed a topic MOD
  184. $topic_id = intval($forum_topic_data['topic_id']);
  185. // End add - Who viewed a topic MOD
  186.  
  187. //
  188. // Start session management
  189. //
  190. $userdata = session_pagestart($user_ip, $forum_id, $topic_id);
  191. init_userprefs($userdata);
  192. //
  193. // End session management
  194. //
  195.  
  196. //
  197. // Set or remove bookmark
  198. //
  199. if ( isset($HTTP_GET_VARS['setbm']) || isset($HTTP_GET_VARS['removebm']) )
  200. {
  201.     $redirect = "viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start&postdays=$post_days&postorder=$post_order&highlight=" . $HTTP_GET_VARS['highlight'];
  202.     if ( $userdata['session_logged_in'] )
  203.     {
  204.         if (isset($HTTP_GET_VARS['setbm']) && $HTTP_GET_VARS['setbm'])
  205.         {
  206.             set_bookmark($topic_id);
  207.         }
  208.         else if (isset($HTTP_GET_VARS['removebm']) && $HTTP_GET_VARS['removebm'])
  209.         {
  210.             remove_bookmark($topic_id);
  211.         }
  212.     }
  213.     else
  214.     {
  215.         if (isset($HTTP_GET_VARS['setbm']) && $HTTP_GET_VARS['setbm'])
  216.         {
  217.             $redirect .= '&setbm=true';
  218.         }
  219.         else if (isset($HTTP_GET_VARS['removebm']) && $HTTP_GET_VARS['removebm'])
  220.         {
  221.             $redirect .= '&removebm=true';
  222.         }
  223.         redirect(append_sid("login.$phpEx?redirect=$redirect", true));
  224.     }
  225.     redirect(append_sid($redirect, true));
  226. }
  227.  
  228. //
  229. // Start auth check
  230. //
  231. $is_auth = array();
  232. //-- mod : categories hierarchy --------------------------------------------------------------------
  233. //-- delete
  234. // $is_auth = auth(AUTH_ALL, $forum_id, $userdata, $forum_topic_data);
  235. //
  236. // if( !$is_auth['auth_view'] || !$is_auth['auth_read'] )
  237. //-- add
  238. $is_auth = $tree['auth'][POST_FORUM_URL . $forum_id];
  239.  
  240. if ( !$is_auth['auth_read'] )
  241. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  242.  
  243. {
  244.     if ( !$userdata['session_logged_in'] )
  245.     {
  246.         $redirect = ( isset($post_id) ) ? POST_POST_URL . "=$post_id" : POST_TOPIC_URL . "=$topic_id";
  247.         $redirect .= ( isset($start) ) ? "&start=$start" : '';
  248.         redirect(append_sid("login.$phpEx?redirect=viewtopic.$phpEx&$redirect", true));
  249.     }
  250.  
  251.     //-- mod : categories hierarchy --------------------------------------------------------------------
  252. //-- delete
  253. //    $message = ( !$is_auth['auth_view'] ) ? $lang['Topic_post_not_exist'] : sprintf($lang['Sorry_auth_read'], $is_auth['auth_read_type']);
  254. //-- add
  255.     $message = sprintf($lang['Sorry_auth_read'], $is_auth['auth_read_type']);
  256. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  257.  
  258.  
  259.     message_die(GENERAL_MESSAGE, $message);
  260. }
  261. //
  262. // End auth check
  263. //
  264. // Start add - Who viewed a topic MOD
  265. $user_id=$userdata['user_id'];
  266. $sql='UPDATE '.TOPIC_VIEW_TABLE.' SET topic_id="'.$topic_id.'", view_time="'.time().'", view_count=view_count+1 WHERE topic_id='.$topic_id.' AND user_id='.$user_id;
  267. if ( !$db->sql_query($sql) || !$db->sql_affectedrows() )
  268. {
  269.     $sql = 'INSERT IGNORE INTO '.TOPIC_VIEW_TABLE.' (topic_id, user_id, view_time,view_count)
  270.         VALUES ('.$topic_id.', "'.$user_id.'", "'.time().'","1")';
  271.     if ( !($db->sql_query($sql)) )
  272.     {
  273.         message_die(CRITICAL_ERROR, 'Error create user view topic information ', '', __LINE__, __FILE__, $sql);
  274.     }
  275. }
  276. // End add - Who viewed a topic MOD
  277.  
  278. //-- mod : categories hierarchy --------------------------------------------------------------------
  279. //-- delete
  280. // $forum_name = $forum_topic_data['forum_name'];
  281. //-- add
  282. $forum_name = get_object_lang(POST_FORUM_URL . $forum_topic_data['forum_id'], 'name');
  283. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  284.  
  285. $topic_title = $forum_topic_data['topic_title'];
  286. $topic_id = intval($forum_topic_data['topic_id']);
  287. $topic_time = $forum_topic_data['topic_time'];
  288. //-- mod : calendar --------------------------------------------------------------------------------
  289. //-- add
  290. $topic_first_post_id = intval($forum_topic_data['topic_first_post_id']);
  291. $topic_calendar_time = intval($forum_topic_data['topic_calendar_time']);
  292. $topic_calendar_duration = intval($forum_topic_data['topic_calendar_duration']);
  293. //-- fin mod : calendar ----------------------------------------------------------------------------
  294.  
  295.  
  296. if ( !empty($post_id) )
  297. {
  298.     $start = floor(($forum_topic_data['prev_posts'] - 1) / intval($board_config['posts_per_page'])) * intval($board_config['posts_per_page']);
  299. }
  300.  
  301. //
  302. // Is user watching this thread?
  303. //
  304. if( $userdata['session_logged_in'] )
  305. {
  306.     $can_watch_topic = TRUE;
  307.  
  308.     $sql = "SELECT notify_status
  309.         FROM " . TOPICS_WATCH_TABLE . "
  310.         WHERE topic_id = $topic_id
  311.             AND user_id = " . $userdata['user_id'];
  312.     if ( !($result = $db->sql_query($sql)) )
  313.     {
  314.         message_die(GENERAL_ERROR, "Could not obtain topic watch information", '', __LINE__, __FILE__, $sql);
  315.     }
  316.  
  317.     if ( $row = $db->sql_fetchrow($result) )
  318.     {
  319.         if ( isset($HTTP_GET_VARS['unwatch']) )
  320.         {
  321.             if ( $HTTP_GET_VARS['unwatch'] == 'topic' )
  322.             {
  323.                 $is_watching_topic = 0;
  324.  
  325.                 $sql_priority = (SQL_LAYER == "mysql") ? "LOW_PRIORITY" : '';
  326.                 $sql = "DELETE $sql_priority FROM " . TOPICS_WATCH_TABLE . "
  327.                     WHERE topic_id = $topic_id
  328.                         AND user_id = " . $userdata['user_id'];
  329.                 if ( !($result = $db->sql_query($sql)) )
  330.                 {
  331.                     message_die(GENERAL_ERROR, "Could not delete topic watch information", '', __LINE__, __FILE__, $sql);
  332.                 }
  333.             }
  334.  
  335.             $template->assign_vars(array(
  336.                 'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start") . '">')
  337.             );
  338.  
  339.             $message = $lang['No_longer_watching'] . '<br /><br />' . sprintf($lang['Click_return_topic'], '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start") . '">', '</a>');
  340.             message_die(GENERAL_MESSAGE, $message);
  341.         }
  342.         else
  343.         {
  344.             $is_watching_topic = TRUE;
  345.  
  346.             if ( $row['notify_status'] )
  347.             {
  348.                 $sql_priority = (SQL_LAYER == "mysql") ? "LOW_PRIORITY" : '';
  349.                 $sql = "UPDATE $sql_priority " . TOPICS_WATCH_TABLE . "
  350.                     SET notify_status = 0
  351.                     WHERE topic_id = $topic_id
  352.                         AND user_id = " . $userdata['user_id'];
  353.                 if ( !($result = $db->sql_query($sql)) )
  354.                 {
  355.                     message_die(GENERAL_ERROR, "Could not update topic watch information", '', __LINE__, __FILE__, $sql);
  356.                 }
  357.             }
  358.         }
  359.     }
  360.     else
  361.     {
  362.         if ( isset($HTTP_GET_VARS['watch']) )
  363.         {
  364.             if ( $HTTP_GET_VARS['watch'] == 'topic' )
  365.             {
  366.                 $is_watching_topic = TRUE;
  367.  
  368.                 $sql_priority = (SQL_LAYER == "mysql") ? "LOW_PRIORITY" : '';
  369.                 $sql = "INSERT $sql_priority INTO " . TOPICS_WATCH_TABLE . " (user_id, topic_id, notify_status)
  370.                     VALUES (" . $userdata['user_id'] . ", $topic_id, 0)";
  371.                 if ( !($result = $db->sql_query($sql)) )
  372.                 {
  373.                     message_die(GENERAL_ERROR, "Could not insert topic watch information", '', __LINE__, __FILE__, $sql);
  374.                 }
  375.             }
  376.  
  377.             $template->assign_vars(array(
  378.                 'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start") . '">')
  379.             );
  380.  
  381.             $message = $lang['You_are_watching'] . '<br /><br />' . sprintf($lang['Click_return_topic'], '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start") . '">', '</a>');
  382.             message_die(GENERAL_MESSAGE, $message);
  383.         }
  384.         else
  385.         {
  386.             $is_watching_topic = 0;
  387.         }
  388.     }
  389. }
  390. else
  391. {
  392.     if ( isset($HTTP_GET_VARS['unwatch']) )
  393.     {
  394.         if ( $HTTP_GET_VARS['unwatch'] == 'topic' )
  395.         {
  396.             redirect(append_sid("login.$phpEx?redirect=viewtopic.$phpEx&" . POST_TOPIC_URL . "=$topic_id&unwatch=topic", true));
  397.         }
  398.     }
  399.     else
  400.     {
  401.         $can_watch_topic = 0;
  402.         $is_watching_topic = 0;
  403.     }
  404. }
  405.  
  406. //
  407. // Generate a 'Show posts in previous x days' select box. If the postdays var is POSTed
  408. // then get it's value, find the number of topics with dates newer than it (to properly
  409. // handle pagination) and alter the main query
  410. //
  411. $previous_days = array(0, 1, 7, 14, 30, 90, 180, 364);
  412. $previous_days_text = array($lang['All_Posts'], $lang['1_Day'], $lang['7_Days'], $lang['2_Weeks'], $lang['1_Month'], $lang['3_Months'], $lang['6_Months'], $lang['1_Year']);
  413.  
  414. if( !empty($HTTP_POST_VARS['postdays']) || !empty($HTTP_GET_VARS['postdays']) )
  415. {
  416.     $post_days = ( !empty($HTTP_POST_VARS['postdays']) ) ? intval($HTTP_POST_VARS['postdays']) : intval($HTTP_GET_VARS['postdays']);
  417.     $min_post_time = time() - (intval($post_days) * 86400);
  418.  
  419.     $sql = "SELECT COUNT(p.post_id) AS num_posts
  420.         FROM " . TOPICS_TABLE . " t, " . POSTS_TABLE . " p
  421.         WHERE t.topic_id = $topic_id
  422.             AND p.topic_id = t.topic_id
  423.             AND p.post_time >= $min_post_time";
  424.     if ( !($result = $db->sql_query($sql)) )
  425.     {
  426.         message_die(GENERAL_ERROR, "Could not obtain limited topics count information", '', __LINE__, __FILE__, $sql);
  427.     }
  428.  
  429.     $total_replies = ( $row = $db->sql_fetchrow($result) ) ? intval($row['num_posts']) : 0;
  430.  
  431.     $limit_posts_time = "AND p.post_time >= $min_post_time ";
  432.  
  433.     if ( !empty($HTTP_POST_VARS['postdays']))
  434.     {
  435.         $start = 0;
  436.     }
  437. }
  438. else
  439. {
  440.     $total_replies = intval($forum_topic_data['topic_replies']) + 1;
  441.  
  442.     $limit_posts_time = '';
  443.     $post_days = 0;
  444. }
  445.  
  446. $select_post_days = '<select name="postdays">';
  447. for($i = 0; $i < count($previous_days); $i++)
  448. {
  449.     $selected = ($post_days == $previous_days[$i]) ? ' selected="selected"' : '';
  450.     $select_post_days .= '<option value="' . $previous_days[$i] . '"' . $selected . '>' . $previous_days_text[$i] . '</option>';
  451. }
  452. $select_post_days .= '</select>';
  453.  
  454. //
  455. // Decide how to order the post display
  456. //
  457. if ( !empty($HTTP_POST_VARS['postorder']) || !empty($HTTP_GET_VARS['postorder']) )
  458. {
  459.     $post_order = (!empty($HTTP_POST_VARS['postorder'])) ? htmlspecialchars($HTTP_POST_VARS['postorder']) : htmlspecialchars($HTTP_GET_VARS['postorder']);
  460.     $post_time_order = ($post_order == "asc") ? "ASC" : "DESC";
  461. }
  462. else
  463. {
  464.     $post_order = 'asc';
  465.     $post_time_order = 'ASC';
  466. }
  467.  
  468. $select_post_order = '<select name="postorder">';
  469. if ( $post_time_order == 'ASC' )
  470. {
  471.     $select_post_order .= '<option value="asc" selected="selected">' . $lang['Oldest_First'] . '</option><option value="desc">' . $lang['Newest_First'] . '</option>';
  472. }
  473. else
  474. {
  475.     $select_post_order .= '<option value="asc">' . $lang['Oldest_First'] . '</option><option value="desc" selected="selected">' . $lang['Newest_First'] . '</option>';
  476. }
  477. $select_post_order .= '</select>';
  478.  
  479. //
  480. // Go ahead and pull all data for this topic
  481. //
  482. $sql = "SELECT u.username, u.user_absence, u.user_absence_mode, u.user_id, u.user_posts, u.user_from, u.user_from_flag, u.user_website, u.user_email, u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm, u.user_viewemail, u.user_rank, u.user_sig, u.user_sig_bbcode_uid, u.user_avatar, u.user_avatar_type, u.user_allowavatar, u.user_allowsmile, u.user_warnings, u.user_level, u.user_allow_viewonline, u.user_session_time, u.user_birthday, u.user_next_birthday_greeting, u.user_gender, p.*,  pt.post_text, pt.post_subject, pt.bbcode_uid
  483.     FROM " . POSTS_TABLE . " p, " . USERS_TABLE . " u, " . POSTS_TEXT_TABLE . " pt
  484.     WHERE p.topic_id = $topic_id
  485.         $limit_posts_time
  486.         AND pt.post_id = p.post_id
  487.         AND u.user_id = p.poster_id
  488.     ORDER BY p.post_time $post_time_order
  489.     LIMIT $start, ".$board_config['posts_per_page'];
  490. if ( !($result = $db->sql_query($sql)) )
  491. {
  492.     message_die(GENERAL_ERROR, "Could not obtain post/user information.", '', __LINE__, __FILE__, $sql);
  493. }
  494.  
  495. $postrow = array();
  496. if ($row = $db->sql_fetchrow($result))
  497. {
  498.     do
  499.     {
  500.         $postrow[] = $row;
  501.     }
  502.     while ($row = $db->sql_fetchrow($result));
  503.     $db->sql_freeresult($result);
  504.  
  505.     $total_posts = count($postrow);
  506. }
  507. else 
  508.    include($phpbb_root_path . 'includes/functions_admin.' . $phpEx); 
  509.    sync('topic', $topic_id); 
  510.  
  511.    message_die(GENERAL_MESSAGE, $lang['No_posts_topic']); 
  512.  
  513. $resync = FALSE; 
  514. if ($forum_topic_data['topic_replies'] + 1 < $start + count($postrow)) 
  515.    $resync = TRUE; 
  516. elseif ($start + $board_config['posts_per_page'] > $forum_topic_data['topic_replies']) 
  517.    $row_id = intval($forum_topic_data['topic_replies']) % intval($board_config['posts_per_page']); 
  518.    if ($postrow[$row_id]['post_id'] != $forum_topic_data['topic_last_post_id'] || $start + count($postrow) < $forum_topic_data['topic_replies']) 
  519.    { 
  520.       $resync = TRUE; 
  521.    } 
  522. elseif (count($postrow) < $board_config['posts_per_page']) 
  523.    $resync = TRUE; 
  524.  
  525. if ($resync) 
  526.    include($phpbb_root_path . 'includes/functions_admin.' . $phpEx); 
  527.    sync('topic', $topic_id); 
  528.  
  529.    $result = $db->sql_query('SELECT COUNT(post_id) AS total FROM ' . POSTS_TABLE . ' WHERE topic_id = ' . $topic_id); 
  530.    $row = $db->sql_fetchrow($result); 
  531.    $total_replies = $row['total']; 
  532. }
  533.  
  534. $sql = "SELECT *
  535.     FROM " . RANKS_TABLE . "
  536.     ORDER BY rank_special, rank_min";
  537. if ( !($result = $db->sql_query($sql)) )
  538. {
  539.     message_die(GENERAL_ERROR, "Could not obtain ranks information.", '', __LINE__, __FILE__, $sql);
  540. }
  541.  
  542. $ranksrow = array();
  543. while ( $row = $db->sql_fetchrow($result) )
  544. {
  545.     $ranksrow[] = $row;
  546. }
  547. $db->sql_freeresult($result);
  548.  
  549. //
  550. // Define censored word matches
  551. //
  552. $orig_word = array();
  553. $replacement_word = array();
  554. obtain_word_list($orig_word, $replacement_word);
  555.  
  556. //
  557. // Censor topic title
  558. //
  559. if ( count($orig_word) )
  560. {
  561.     $topic_title = preg_replace($orig_word, $replacement_word, $topic_title);
  562. }
  563.  
  564. //
  565. // Was a highlight request part of the URI?
  566. //
  567. $highlight_match = $highlight = '';
  568. if (isset($HTTP_GET_VARS['highlight']))
  569. {
  570.     // Split words and phrases
  571.     $words = explode(' ', trim(htmlspecialchars($HTTP_GET_VARS['highlight']))); 
  572.  
  573.     for($i = 0; $i < sizeof($words); $i++)
  574.     {
  575.         if (trim($words[$i]) != '')
  576.         {
  577.             $highlight_match .= (($highlight_match != '') ? '|' : '') . str_replace('*', '\w*', phpbb_preg_quote($words[$i], '#'));
  578.         }
  579.     }
  580.     unset($words);
  581.  
  582.     $highlight = urlencode($HTTP_GET_VARS['highlight']);
  583. }
  584.  
  585. //
  586. // Post, reply and other URL generation for
  587. // templating vars
  588. //
  589. $new_topic_url = append_sid("posting.$phpEx?mode=newtopic&" . POST_FORUM_URL . "=$forum_id");
  590. $reply_topic_url = append_sid("posting.$phpEx?mode=reply&" . POST_TOPIC_URL . "=$topic_id");
  591. $export_topic_url = append_sid("export.$phpEx?mode=txt&" . POST_TOPIC_URL . "=$topic_id");
  592. $view_forum_url = append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id");
  593. $view_prev_topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&view=previous");
  594. $view_next_topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&view=next");
  595.  
  596. //
  597. // Mozilla navigation bar
  598. //
  599. $nav_links['prev'] = array(
  600.     'url' => $view_prev_topic_url,
  601.     'title' => $lang['View_previous_topic']
  602. );
  603. $nav_links['next'] = array(
  604.     'url' => $view_next_topic_url,
  605.     'title' => $lang['View_next_topic']
  606. );
  607. $nav_links['up'] = array(
  608.     'url' => $view_forum_url,
  609.     'title' => $forum_name
  610. );
  611.  
  612. $reply_img = ( $forum_topic_data['forum_status'] == FORUM_LOCKED || $forum_topic_data['topic_status'] == TOPIC_LOCKED ) ? $images['reply_locked'] : $images['reply_new'];
  613. $reply_alt = ( $forum_topic_data['forum_status'] == FORUM_LOCKED || $forum_topic_data['topic_status'] == TOPIC_LOCKED ) ? $lang['Topic_locked'] : $lang['Reply_to_topic'];
  614. $post_img = ( $forum_topic_data['forum_status'] == FORUM_LOCKED ) ? $images['post_locked'] : $images['post_new'];
  615. $post_alt = ( $forum_topic_data['forum_status'] == FORUM_LOCKED ) ? $lang['Forum_locked'] : $lang['Post_new_topic'];
  616.  
  617. //
  618. // Set a cookie for this topic
  619. //
  620. if ( $userdata['session_logged_in'] )
  621. {
  622.     $tracking_topics = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) : array();
  623.     $tracking_forums = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) : array();
  624.  
  625.     if ( !empty($tracking_topics[$topic_id]) && !empty($tracking_forums[$forum_id]) )
  626.     {
  627.         $topic_last_read = ( $tracking_topics[$topic_id] > $tracking_forums[$forum_id] ) ? $tracking_topics[$topic_id] : $tracking_forums[$forum_id];
  628.     }
  629.     else if ( !empty($tracking_topics[$topic_id]) || !empty($tracking_forums[$forum_id]) )
  630.     {
  631.         $topic_last_read = ( !empty($tracking_topics[$topic_id]) ) ? $tracking_topics[$topic_id] : $tracking_forums[$forum_id];
  632.     }
  633.     else
  634.     {
  635.         $topic_last_read = $userdata['user_lastvisit'];
  636.     }
  637.  
  638.     if ( count($tracking_topics) >= 150 && empty($tracking_topics[$topic_id]) )
  639.     {
  640.         asort($tracking_topics);
  641.         unset($tracking_topics[key($tracking_topics)]);
  642.     }
  643.  
  644.     $tracking_topics[$topic_id] = time();
  645.  
  646.     setcookie($board_config['cookie_name'] . '_t', serialize($tracking_topics), 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);
  647. }
  648.  
  649. //
  650. // Load templates
  651. //
  652. $template->set_filenames(array(
  653.     'body' => 'viewtopic_body.tpl')
  654. );
  655. make_jumpbox('viewforum.'.$phpEx, $forum_id);
  656.  
  657. //
  658. // Output page header
  659. //
  660. // Start add - Topic in Who is online MOD
  661. define('SHOW_ONLINE', true);
  662. // End add - Topic in Who is online MOD
  663. $page_title = $lang['View_topic'] .' - ' . $topic_title;
  664. include($phpbb_root_path . 'includes/page_header.'.$phpEx);
  665.  
  666. //
  667. // User authorisation levels output
  668. //
  669. $s_auth_can = ( ( $is_auth['auth_post'] ) ? $lang['Rules_post_can'] : $lang['Rules_post_cannot'] ) . '<br />';
  670. $s_auth_can .= ( ( $is_auth['auth_reply'] ) ? $lang['Rules_reply_can'] : $lang['Rules_reply_cannot'] ) . '<br />';
  671. $s_auth_can .= ( ( $is_auth['auth_edit'] ) ? $lang['Rules_edit_can'] : $lang['Rules_edit_cannot'] ) . '<br />';
  672. $s_auth_can .= ( ( $is_auth['auth_delete'] ) ? $lang['Rules_delete_can'] : $lang['Rules_delete_cannot'] ) . '<br />';
  673. $s_auth_can .= ( ( $is_auth['auth_vote'] ) ? $lang['Rules_vote_can'] : $lang['Rules_vote_cannot'] ) . '<br />';
  674. $s_auth_can .= ( $is_auth['auth_ban'] ) ? $lang['Rules_ban_can'] . "<br />" : ""; 
  675. $s_auth_can .= ( $is_auth['auth_greencard'] ) ? $lang['Rules_greencard_can'] . "<br />" : ""; 
  676. $s_auth_can .= ( $is_auth['auth_bluecard'] ) ? $lang['Rules_bluecard_can'] . "<br />" : "";
  677. attach_build_auth_levels($is_auth, $s_auth_can);
  678. $topic_mod = '';
  679.  
  680. if ( $is_auth['auth_mod'] )
  681. {
  682.     $s_auth_can .= sprintf($lang['Rules_moderate'], "<a href=\"modcp.$phpEx?" . POST_FORUM_URL . "=$forum_id&sid=" . $userdata['session_id'] . '">', '</a>');
  683.  
  684.     $topic_mod .= ( $is_auth['auth_delete'] ) ? "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=delete&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_delete'] . '" alt="' . $lang['Delete_topic'] . '" title="' . $lang['Delete_topic'] . '" border="0" /></a> ' : "";
  685.  
  686.     $topic_mod .= "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=move&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_move'] . '" alt="' . $lang['Move_topic'] . '" title="' . $lang['Move_topic'] . '" border="0" /></a> ';
  687.  
  688.     $topic_mod .= ( $forum_topic_data['topic_status'] == TOPIC_UNLOCKED ) ? "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=lock&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_lock'] . '" alt="' . $lang['Lock_topic'] . '" title="' . $lang['Lock_topic'] . '" border="0" /></a> ' : "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=unlock&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_unlock'] . '" alt="' . $lang['Unlock_topic'] . '" title="' . $lang['Unlock_topic'] . '" border="0" /></a> ';
  689.  
  690.     $topic_mod .= "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=split&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_split'] . '" alt="' . $lang['Split_topic'] . '" title="' . $lang['Split_topic'] . '" border="0" /></a>  ';
  691.     //-- mod : merge -----------------------------------------------------------------------------------
  692. //-- add
  693.     $topic_mod .= '<a href="' . append_sid("merge.$phpEx?" . POST_TOPIC_URL . '=' . $topic_id) . '"><img src="' . $images['topic_mod_merge'] . '" alt="' . $lang['Merge_topics'] . '" title="' . $lang['Merge_topics'] . '" border="0" /></a> ';
  694. //-- fin mod : merge -------------------------------------------------------------------------------
  695.  
  696.     // MOD Modcp Extansion BEGIN
  697.     $normal_button = "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=normalise&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_normal'] . '" alt="' . $lang['Normal_topic'] . '" title="' . $lang['Normal_topic'] . '" border="0" /></a> ';
  698.     $sticky_button = ( $is_auth['auth_sticky'] ) ? "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=sticky&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_sticky'] . '" alt="' . $lang['Sticky_topic'] . '" title="' . $lang['Sticky_topic'] . '" border="0" /></a> ' : "";
  699.     $announce_button = ( $is_auth['auth_announce'] ) ? "<a href=\"modcp.$phpEx?" . POST_TOPIC_URL . "=$topic_id&mode=announce&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_mod_announce'] . '" alt="' . $lang['Announce_topic'] . '" title="' . $lang['Announce_topic'] . '" border="0" /></a> ' : "";
  700.     switch( $forum_topic_data['topic_type'] )
  701.     {
  702.         case POST_NORMAL: 
  703.             $topic_mod .= $sticky_button . $announce_button;
  704.             break;
  705.         case POST_STICKY:
  706.             $topic_mod .= $announce_button . $normal_button;
  707.             break;
  708.         case POST_ANNOUNCE:
  709.             $topic_mod .= $sticky_button . $normal_button;
  710.             break;
  711.     }
  712.     // MOD Modcp Extansion END
  713. }
  714.  
  715. //
  716. // Topic watch information
  717. //
  718. $s_watching_topic = '';
  719. if ( $can_watch_topic )
  720. {
  721.     if ( $is_watching_topic )
  722.     {
  723.         $s_watching_topic = "<a href=\"viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&unwatch=topic&start=$start&sid=" . $userdata['session_id'] . '">' . $lang['Stop_watching_topic'] . '</a>';
  724.         $s_watching_topic_img = ( isset($images['topic_un_watch']) ) ? "<a href=\"viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&unwatch=topic&start=$start&sid=" . $userdata['session_id'] . '"><img src="' . $images['topic_un_watch'] . '" alt="' . $lang['Stop_watching_topic'] . '" title="' . $lang['Stop_watching_topic'] . '" border="0"></a>' : '';
  725.     }
  726.     else
  727.     {
  728.         $s_watching_topic = "<a href=\"viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&watch=topic&start=$start&sid=" . $userdata['session_id'] . '">' . $lang['Start_watching_topic'] . '</a>';
  729.         $s_watching_topic_img = ( isset($images['Topic_watch']) ) ? "<a href=\"viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&watch=topic&start=$start&sid=" . $userdata['session_id'] . '"><img src="' . $images['Topic_watch'] . '" alt="' . $lang['Start_watching_topic'] . '" title="' . $lang['Start_watching_topic'] . '" border="0"></a>' : '';
  730.     }
  731. }
  732. //
  733. // Bookmark information
  734. //
  735. if ( $userdata['session_logged_in'] )
  736. {
  737.     $template->assign_block_vars('bookmark_state', array());
  738.     // Send vars to template
  739.     $bm_action = (is_bookmark_set($topic_id)) ? ("&removebm=true") : ("&setbm=true");
  740.     $template->assign_vars(array(
  741.         'L_BOOKMARK_ACTION' => (is_bookmark_set($topic_id)) ? ($lang['Remove_Bookmark']) : ($lang['Set_Bookmark']),
  742.         'U_BOOKMARK_ACTION' => append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start&postdays=$post_days&postorder=$post_order&highlight=" . $HTTP_GET_VARS['highlight'] . $bm_action))
  743.     );
  744. }
  745. //
  746. // If we've got a hightlight set pass it on to pagination,
  747. // I get annoyed when I lose my highlight after the first page.
  748. //
  749. $pagination = ( $highlight != '' ) ? generate_pagination("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&postdays=$post_days&postorder=$post_order&highlight=$highlight", $total_replies, $board_config['posts_per_page'], $start) : generate_pagination("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&postdays=$post_days&postorder=$post_order", $total_replies, $board_config['posts_per_page'], $start);
  750. $watch_topic_url = "topic_view_users.$phpEx?".POST_TOPIC_URL."=$topic_id";
  751. //
  752. // Send vars to template
  753. //
  754. $template->assign_vars(array(
  755.     'FORUM_ID' => $forum_id,
  756.     'FORUM_NAME' => $forum_name,
  757.     'TOPIC_ID' => $topic_id,
  758.     'TOPIC_TITLE' => $topic_title,
  759.     'PAGINATION' => $pagination,
  760.     'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / intval($board_config['posts_per_page']) ) + 1 ), ceil( $total_replies / intval($board_config['posts_per_page']) )),
  761.  
  762.     'POST_IMG' => $post_img,
  763.     'REPLY_IMG' => $reply_img,
  764.     'L_PRINT' => ($lang['Print_View']) ? $lang['Print_View'] : 'Printable version', 
  765.         'U_PRINT' => append_sid("printview.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start"),
  766.     'L_AUTHOR' => $lang['Author'],
  767.     'L_MESSAGE' => $lang['Message'],
  768.     'L_POSTED' => $lang['Posted'],
  769.     'L_POST_SUBJECT' => $lang['Post_subject'],
  770.     'L_VIEW_NEXT_TOPIC' => $lang['View_next_topic'],
  771.     'L_VIEW_PREVIOUS_TOPIC' => $lang['View_previous_topic'],
  772.     'L_POST_NEW_TOPIC' => $post_alt,
  773.     'L_POST_REPLY_TOPIC' => $reply_alt,
  774.     'L_BACK_TO_TOP' => $lang['Back_to_top'],
  775.     'L_DISPLAY_POSTS' => $lang['Display_posts'],
  776.     'L_LOCK_TOPIC' => $lang['Lock_topic'],
  777.     'L_UNLOCK_TOPIC' => $lang['Unlock_topic'],
  778.     'L_MOVE_TOPIC' => $lang['Move_topic'],
  779.     'L_SPLIT_TOPIC' => $lang['Split_topic'],
  780.     'L_DELETE_TOPIC' => $lang['Delete_topic'],
  781.     'L_GOTO_PAGE' => $lang['Goto_page'],
  782.     // Bottom of Page Link MOD - Daz - ForumImages.com - START
  783.     'PAGE_BOTTOM_IMG' => '<a href="#bot"><img src="' . $images['icon_down'] . '" alt="' . $lang['Go_to_bottom'] . '" title="' . $lang['Go_to_bottom'] . '" border="0" /></a>',
  784.     'PAGE_BOTTOM' => '<a href="#bot">' . $lang['Go_to_bottom'] . '</a>',
  785.     'PAGE_TOP_IMG' => '<a href="#top"><img src="' . $images['icon_up'] . '" alt="' . $lang['Back_to_top'] . '" title="' . $lang['Back_to_top'] . '" border="0" /></a>',
  786.     'PAGE_TOP' => '<a href="#top">' . $lang['Back_to_top'] . '</a>',
  787.     // Bottom of Page Link MOD - Daz - ForumImages.com - END
  788.     'L_TELL_FRIEND' => $lang['Tell_Friend'],
  789.     'L_TOPIC_VIEW_USERS' => $lang['Topic_view_users'],
  790.     'L_SAVE_TOPIC' => $lang['Save_Topic'],
  791.     'S_TOPIC_LINK' => POST_TOPIC_URL,
  792.     'S_SELECT_POST_DAYS' => $select_post_days,
  793.     'S_SELECT_POST_ORDER' => $select_post_order,
  794.     'S_POST_DAYS_ACTION' => append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $topic_id . "&start=$start"),
  795.     'S_AUTH_LIST' => $s_auth_can,
  796.     'S_TOPIC_ADMIN' => $topic_mod,
  797.     'S_WATCH_TOPIC' => $s_watching_topic,
  798.     'S_WATCH_TOPIC_IMG' => $s_watching_topic_img,
  799.  
  800.     'U_VIEW_TOPIC' => append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&start=$start&postdays=$post_days&postorder=$post_order&highlight=$highlight"),
  801.     'U_VIEW_FORUM' => $view_forum_url,
  802.     'U_VIEW_OLDER_TOPIC' => $view_prev_topic_url,
  803.     'U_VIEW_NEWER_TOPIC' => $view_next_topic_url,
  804.     'U_POST_NEW_TOPIC' => $new_topic_url,
  805.     'U_POST_EXPORT_TOPIC' => $export_topic_url,
  806.     'U_WATCH_TOPIC' => $watch_topic_url,
  807.     'U_POST_REPLY_TOPIC' => $reply_topic_url)
  808. );
  809.  
  810. //
  811. // Does this topic contain a poll?
  812. //
  813. if ( !empty($forum_topic_data['topic_vote']) )
  814. {
  815.     $s_hidden_fields = '';
  816.  
  817.     $sql = "SELECT vd.vote_id, vd.vote_text, vd.vote_start, vd.vote_length, vr.vote_option_id, vr.vote_option_text, vr.vote_result
  818.         FROM " . VOTE_DESC_TABLE . " vd, " . VOTE_RESULTS_TABLE . " vr
  819.         WHERE vd.topic_id = $topic_id
  820.             AND vr.vote_id = vd.vote_id
  821.         ORDER BY vr.vote_option_id ASC";
  822.     if ( !($result = $db->sql_query($sql)) )
  823.     {
  824.         message_die(GENERAL_ERROR, "Could not obtain vote data for this topic", '', __LINE__, __FILE__, $sql);
  825.     }
  826.  
  827.     if ( $vote_info = $db->sql_fetchrowset($result) )
  828.     {
  829.         $db->sql_freeresult($result);
  830.         $vote_options = count($vote_info);
  831.  
  832.         $vote_id = $vote_info[0]['vote_id'];
  833.         $vote_title = $vote_info[0]['vote_text'];
  834.  
  835.         $sql = "SELECT vote_id
  836.             FROM " . VOTE_USERS_TABLE . "
  837.             WHERE vote_id = $vote_id
  838.                 AND vote_user_id = " . intval($userdata['user_id']);
  839.         if ( !($result = $db->sql_query($sql)) )
  840.         {
  841.             message_die(GENERAL_ERROR, "Could not obtain user vote data for this topic", '', __LINE__, __FILE__, $sql);
  842.         }
  843.  
  844.         $user_voted = ( $row = $db->sql_fetchrow($result) ) ? TRUE : 0;
  845.         $db->sql_freeresult($result);
  846.  
  847.         if ( isset($HTTP_GET_VARS['vote']) || isset($HTTP_POST_VARS['vote']) )
  848.         {
  849.             $view_result = ( ( ( isset($HTTP_GET_VARS['vote']) ) ? $HTTP_GET_VARS['vote'] : $HTTP_POST_VARS['vote'] ) == 'viewresult' ) ? TRUE : 0;
  850.         }
  851.         else
  852.         {
  853.             $view_result = 0;
  854.         }
  855.  
  856.         $poll_expired = ( $vote_info[0]['vote_length'] ) ? ( ( $vote_info[0]['vote_start'] + $vote_info[0]['vote_length'] < time() ) ? TRUE : 0 ) : 0;
  857.  
  858.         if ( $user_voted || $view_result || $poll_expired || !$is_auth['auth_vote'] || $forum_topic_data['topic_status'] == TOPIC_LOCKED )
  859.         {
  860.             $template->set_filenames(array(
  861.                 'pollbox' => 'viewtopic_poll_result.tpl')
  862.             );
  863.  
  864.             $vote_results_sum = 0;
  865.  
  866.             for($i = 0; $i < $vote_options; $i++)
  867.             {
  868.                 $vote_results_sum += $vote_info[$i]['vote_result'];
  869.             }
  870.  
  871.             $vote_graphic = 0;
  872.             $vote_graphic_max = count($images['voting_graphic']);
  873.  
  874.             for($i = 0; $i < $vote_options; $i++)
  875.             {
  876.                 $vote_percent = ( $vote_results_sum > 0 ) ? $vote_info[$i]['vote_result'] / $vote_results_sum : 0;
  877.                 $vote_graphic_length = round($vote_percent * $board_config['vote_graphic_length']);
  878.  
  879.                 $vote_graphic_img = $images['voting_graphic'][$vote_graphic];
  880.                 $vote_graphic = ($vote_graphic < $vote_graphic_max - 1) ? $vote_graphic + 1 : 0;
  881.  
  882.                 if ( count($orig_word) )
  883.                 {
  884.                     $vote_info[$i]['vote_option_text'] = preg_replace($orig_word, $replacement_word, $vote_info[$i]['vote_option_text']);
  885.                 }
  886.  
  887.                 $template->assign_block_vars("poll_option", array(
  888.                     'POLL_OPTION_CAPTION' => $vote_info[$i]['vote_option_text'],
  889.                     'POLL_OPTION_RESULT' => $vote_info[$i]['vote_result'],
  890.                     'POLL_OPTION_PERCENT' => sprintf("%.1d%%", ($vote_percent * 100)),
  891.  
  892.                     'POLL_OPTION_IMG' => $vote_graphic_img,
  893.                     'POLL_OPTION_IMG_WIDTH' => $vote_graphic_length)
  894.                 );
  895.             }
  896.  
  897.             $template->assign_vars(array(
  898.                 'L_TOTAL_VOTES' => $lang['Total_votes'],
  899.                 'TOTAL_VOTES' => $vote_results_sum)
  900.             );
  901.  
  902.         }
  903.         else
  904.         {
  905.             $template->set_filenames(array(
  906.                 'pollbox' => 'viewtopic_poll_ballot.tpl')
  907.             );
  908.  
  909.             for($i = 0; $i < $vote_options; $i++)
  910.             {
  911.                 if ( count($orig_word) )
  912.                 {
  913.                     $vote_info[$i]['vote_option_text'] = preg_replace($orig_word, $replacement_word, $vote_info[$i]['vote_option_text']);
  914.                 }
  915.  
  916.                 $template->assign_block_vars("poll_option", array(
  917.                     'POLL_OPTION_ID' => $vote_info[$i]['vote_option_id'],
  918.                     'POLL_OPTION_CAPTION' => $vote_info[$i]['vote_option_text'])
  919.                 );
  920.             }
  921.  
  922.             $template->assign_vars(array(
  923.                 'L_SUBMIT_VOTE' => $lang['Submit_vote'],
  924.                 'L_VIEW_RESULTS' => $lang['View_results'],
  925.  
  926.                 'U_VIEW_RESULTS' => append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&postdays=$post_days&postorder=$post_order&vote=viewresult"))
  927.             );
  928.  
  929.             $s_hidden_fields = '<input type="hidden" name="topic_id" value="' . $topic_id . '" /><input type="hidden" name="mode" value="vote" />';
  930.         }
  931.  
  932.         if ( count($orig_word) )
  933.         {
  934.             $vote_title = preg_replace($orig_word, $replacement_word, $vote_title);
  935.         }
  936.  
  937.         $s_hidden_fields .= '<input type="hidden" name="sid" value="' . $userdata['session_id'] . '" />';
  938.  
  939.         $template->assign_vars(array(
  940.             'POLL_QUESTION' => $vote_title,
  941.  
  942.             'S_HIDDEN_FIELDS' => $s_hidden_fields,
  943.             'S_POLL_ACTION' => append_sid("posting.$phpEx?mode=vote&" . POST_TOPIC_URL . "=$topic_id"))
  944.         );
  945.  
  946.         $template->assign_var_from_handle('POLL_DISPLAY', 'pollbox');
  947.     }
  948. }
  949. init_display_post_attachments($forum_topic_data['topic_attachment']);
  950. //
  951. // Update the topic view counter
  952. //
  953. $sql = "UPDATE " . TOPICS_TABLE . "
  954.     SET topic_views = topic_views + 1
  955.     WHERE topic_id = $topic_id";
  956. if ( !$db->sql_query($sql) )
  957. {
  958.     message_die(GENERAL_ERROR, "Could not update topic views.", '', __LINE__, __FILE__, $sql);
  959. }
  960. include($phpbb_root_path . 'includes/chinese.'.$phpEx);
  961. //
  962. // Okay, let's do the loop, yeah come on baby let's do the loop
  963. // and it goes like this ...
  964. //
  965. // Start add - Birthday MOD
  966. $this_year = create_date('Y', time(), $board_config['board_timezone']);
  967. $this_date = create_date('md', time(), $board_config['board_timezone']);
  968. // End add - Birthday MOD
  969.  
  970. for($i = 0; $i < $total_posts; $i++)
  971. {
  972.     $poster_id = $postrow[$i]['user_id'];
  973.     $poster = ( $poster_id == ANONYMOUS ) ? $lang['Guest'] : color_group_colorize_name($postrow[$i]['user_id']);
  974.     
  975.     // Start add - Birthday MOD
  976.     if ( $postrow[$i]['user_birthday'] != 999999 ) 
  977.     {
  978.         $poster_birthdate=realdate('md', $postrow[$i]['user_birthday']);
  979.         $n=0;
  980.         while ($n<26)
  981.         {
  982.             if ($poster_birthdate>=$zodiacdates[$n] && $poster_birthdate<=$zodiacdates[$n+1])
  983.             {
  984.                 $zodiac = $lang[$zodiacs[($n/2)]];
  985.                 $u_zodiac = $images[$zodiacs[($n/2)]];
  986.                 $zodiac_img = '<img src="' . $u_zodiac . '" alt="' . $zodiac . '" title="' . $zodiac . '" align="top" border="0" />';
  987.                 $n=26;
  988.             } else
  989.             {
  990.                 $n=$n+2;
  991.             }
  992.         }
  993.         $poster_age = $this_year - realdate ('Y',$postrow[$i]['user_birthday']);
  994.         if ($this_date < $poster_birthdate) $poster_age--;
  995.         $poster_age = $lang['Age'] . ': ' . $poster_age;
  996.         $chinese = get_chinese_year (realdate('Ymd', $postrow[$i]['user_birthday']));
  997.     $u_chinese = $images[$chinese];
  998.     $chinese_img = ($chinese=='Unknown') ? '' : '<img src="' . $u_chinese . '" alt="' . $lang[$chinese] . '" title="' . $lang[$chinese] . '" align="top" border="0" />';
  999.     } else
  1000.     {
  1001.         $zodiac = '';
  1002.         $u_zodiac = '';
  1003.         $zodiac_img = '';
  1004.         $poster_age = '';
  1005.         $chinese = '';
  1006.     $u_chinese = '';
  1007.     $chinese_img = '';
  1008.     }
  1009. // End add - Birthday MOD
  1010.  
  1011.     //-- mod : today at  yesterday at ------------------------------------------------------------------------ 
  1012. //-- add 
  1013.    $post_date = create_date_day($board_config['default_dateformat'], $postrow[$i]['post_time'], $board_config['board_timezone']); 
  1014. //-- end mod : today at  yesterday at ------------------------------------------------------------------------ 
  1015.  
  1016.  
  1017.     $poster_posts = ( $postrow[$i]['user_id'] != ANONYMOUS ) ? $lang['Posts'] . ': ' . $postrow[$i]['user_posts'] : '';
  1018.  
  1019.     $poster_from = ( $postrow[$i]['user_from'] && $postrow[$i]['user_id'] != ANONYMOUS ) ? $lang['Location'] . ': ' . $postrow[$i]['user_from'] : '';
  1020.     // FLAGHACK-start
  1021.     $poster_from_flag = ( $postrow[$i]['user_from_flag'] && $postrow[$i]['user_id'] != ANONYMOUS ) ? "<img src=\"images/flags/" . $postrow[$i]['user_from_flag'] . "\" alt=\"" . $postrow[$i]['user_from_flag'] . "\" border=\"0\" width=\"32\" height=\"20\" /><br />" : "";
  1022.     // FLAGHACK-end
  1023.     $poster_joined = ( $postrow[$i]['user_id'] != ANONYMOUS ) ? $lang['Joined'] . ': ' . create_date($lang['DATE_FORMAT'], $postrow[$i]['user_regdate'], $board_config['board_timezone']) : '';
  1024.  
  1025.     $poster_avatar = '';
  1026.  
  1027.     if ( $postrow[$i]['user_avatar_type'] && $poster_id != ANONYMOUS && $postrow[$i]['user_allowavatar'] )
  1028.     {
  1029.         switch( $postrow[$i]['user_avatar_type'] )
  1030.         {
  1031.             case USER_AVATAR_UPLOAD:
  1032.                 $size = check_avatar_size($board_config['avatar_path'] . '/' . $postrow[$i]['user_avatar'], $board_config['avatar_max_width']);
  1033.                 $poster_avatar = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . '/' . $postrow[$i]['user_avatar'] . '" '.$size.' alt="" border="0" />' : '';
  1034.                 break;
  1035.             case USER_AVATAR_REMOTE:
  1036.                 $size = check_avatar_size($postrow[$i]['user_avatar'], $board_config['avatar_max_width']);
  1037.                 $poster_avatar = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $postrow[$i]['user_avatar'] . '" '.$size.' alt="" border="0" />' : '';
  1038.                 break;
  1039.             case USER_AVATAR_GALLERY:
  1040.                 $size = check_avatar_size($board_config['avatar_gallery_path'] . '/' . $postrow[$i]['user_avatar'], $board_config['avatar_max_width']);
  1041.                 $poster_avatar = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . '/' . $postrow[$i]['user_avatar'] . '" '.$size.' alt="" border="0" />' : '';
  1042.                 break;
  1043.         }
  1044.     }
  1045.     else { 
  1046.         if ( $plus_config['default_avatar'] == 1)
  1047.         {
  1048.                         if ( $postrow[$i]['user_avatar'] == '' ) { 
  1049.                                 $poster_avatar = ( $board_config['allow_avatar_local'] ) ? '<img src="images/default_avatar.gif" alt="" border="0" />' : ''; 
  1050.                         } 
  1051.           }}
  1052.     //
  1053.     // Define the little post icon
  1054.     //
  1055.     if ( $userdata['session_logged_in'] && $postrow[$i]['post_time'] > $userdata['user_lastvisit'] && $postrow[$i]['post_time'] > $topic_last_read )
  1056.     {
  1057.         $mini_post_img = $images['icon_minipost_new'];
  1058.         $mini_post_alt = $lang['New_post'];
  1059.     }
  1060.     else
  1061.     {
  1062.         $mini_post_img = $images['icon_minipost'];
  1063.         $mini_post_alt = $lang['Post'];
  1064.     }
  1065.  
  1066.     $mini_post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $postrow[$i]['post_id']) . '#' . $postrow[$i]['post_id'];
  1067.  
  1068.     //
  1069.     // Generate ranks, set them to empty string initially.
  1070.     //
  1071.     $poster_rank = '';
  1072.     $rank_image = '';
  1073.     // Start add - Gender MOD
  1074.     $gender_image = ''; 
  1075.     // End add - Gender MOD
  1076.     if ( $postrow[$i]['user_id'] == ANONYMOUS )
  1077.     {
  1078.     }
  1079.     else if ( $postrow[$i]['user_rank'] )
  1080.     {
  1081.         for($j = 0; $j < count($ranksrow); $j++)
  1082.         {
  1083.             if ( $postrow[$i]['user_rank'] == $ranksrow[$j]['rank_id'] && $ranksrow[$j]['rank_special'] )
  1084.             {
  1085.                 $poster_rank = $ranksrow[$j]['rank_title'];
  1086.                 $rank_image = ( $ranksrow[$j]['rank_image'] ) ? '<img src="' . $ranksrow[$j]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : '';
  1087.             }
  1088.         }
  1089.     }
  1090.     else
  1091.     {
  1092.         for($j = 0; $j < count($ranksrow); $j++)
  1093.         {
  1094.             if ( $postrow[$i]['user_posts'] >= $ranksrow[$j]['rank_min'] && !$ranksrow[$j]['rank_special'] )
  1095.             {
  1096.                 $poster_rank = $ranksrow[$j]['rank_title'];
  1097.                 $rank_image = ( $ranksrow[$j]['rank_image'] ) ? '<img src="' . $ranksrow[$j]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : '';
  1098.             }
  1099.         }
  1100.     }
  1101.  
  1102.     //
  1103.     // Handle anon users posting with usernames
  1104.     //
  1105.     if ( $poster_id == ANONYMOUS && $postrow[$i]['post_username'] != '' )
  1106.     {
  1107.         $poster = $postrow[$i]['post_username'];
  1108.         $poster_rank = $lang['Guest'];
  1109.         // Start add - Birthday MOD
  1110.         $poster_age = '';
  1111. // End add - Birthday MOD
  1112.  
  1113.     }
  1114.  
  1115.     $temp_url = '';
  1116.  
  1117.     if ( $poster_id != ANONYMOUS )
  1118.     {
  1119.         $temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$poster_id");
  1120.         $profile_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_profile'] . '" alt="' . $lang['Read_profile'] . '" title="' . $lang['Read_profile'] . '" border="0" /></a>';
  1121.         $profile = '<a href="' . $temp_url . '">' . $lang['Read_profile'] . '</a>';
  1122.  
  1123.         $temp_url = append_sid("privmsg.$phpEx?mode=post&" . POST_USERS_URL . "=$poster_id");
  1124.         $pm_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_pm'] . '" alt="' . $lang['Send_private_message'] . '" title="' . $lang['Send_private_message'] . '" border="0" /></a>';
  1125.         // Start add - Gender MOD
  1126.         switch ($postrow[$i]['user_gender']) 
  1127.         { 
  1128.             case 1 : $gender_image = "<img src=\"" . $images['icon_minigender_male'] . "\" alt=\"" . $lang['Gender'].  ":".$lang['Male']."\" title=\"" . $lang['Gender'] . ":".$lang['Male']. "\" border=\"0\" />"; break; 
  1129.             case 2 : $gender_image = "<img src=\"" . $images['icon_minigender_female'] . "\" alt=\"" . $lang['Gender']. ":".$lang['Female']. "\" title=\"" . $lang['Gender'] . ":".$lang['Female']. "\" border=\"0\" />"; break; 
  1130.             default : $gender_image=""; 
  1131.         }
  1132.         // End add - Gender MOD
  1133.         $pm = '<a href="' . $temp_url . '">' . $lang['Send_private_message'] . '</a>';
  1134.         // Photo Album Link MOD - Daz - ForumImages.com - START
  1135.         $temp_url = append_sid("album_personal.$phpEx?user_id=$poster_id");
  1136.         $gallery_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_gallery'] . '" alt="' . sprintf($lang['Personal_Gallery_Of_User'], $postrow[$i]['username']) . '" title="' . sprintf($lang['Personal_Gallery_Of_User'], $postrow[$i]['username']) . '" border="0" /></a>';
  1137.         $gallery = '<a href="' . $temp_url . '">' . $lang['Album'] . '</a>';
  1138.         // Photo Album Link MOD - Daz - ForumImages.com - END 
  1139.         if ( !empty($postrow[$i]['user_viewemail']) || $is_auth['auth_mod'] )
  1140.         {
  1141.             $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $poster_id) : 'mailto:' . $postrow[$i]['user_email'];
  1142.  
  1143.             $email_img = '<a href="' . $email_uri . '"><img src="' . $images['icon_email'] . '" alt="' . $lang['Send_email'] . '" title="' . $lang['Send_email'] . '" border="0" /></a>';
  1144.             $email = '<a href="' . $email_uri . '">' . $lang['Send_email'] . '</a>';
  1145.         }
  1146.         else
  1147.         {
  1148.             $email_img = '';
  1149.             $email = '';
  1150.         }
  1151.  
  1152.         $www_img = ( $postrow[$i]['user_website'] ) ? '<a href="' . $postrow[$i]['user_website'] . '" target="_userwww"><img src="' . $images['icon_www'] . '" alt="' . $lang['Visit_website'] . '" title="' . $lang['Visit_website'] . '" border="0" /></a>' : '';
  1153.         $www = ( $postrow[$i]['user_website'] ) ? '<a href="' . $postrow[$i]['user_website'] . '" target="_userwww">' . $lang['Visit_website'] . '</a>' : '';
  1154.  
  1155.         if ( !empty($postrow[$i]['user_icq']) )
  1156.         {
  1157.             $icq_status_img = '<a href="http://wwp.icq.com/' . $postrow[$i]['user_icq'] . '#pager"><img src="http://web.icq.com/whitepages/online?icq=' . $postrow[$i]['user_icq'] . '&img=5" width="18" height="18" border="0" /></a>';
  1158.             $icq_img = '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $postrow[$i]['user_icq'] . '"><img src="' . $images['icon_icq'] . '" alt="' . $lang['ICQ'] . '" title="' . $lang['ICQ'] . '" border="0" /></a>';
  1159.             $icq =  '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $postrow[$i]['user_icq'] . '">' . $lang['ICQ'] . '</a>';
  1160.         }
  1161.         else
  1162.         {
  1163.             $icq_status_img = '';
  1164.             $icq_img = '';
  1165.             $icq = '';
  1166.         }
  1167.  
  1168.         $aim_img = ( $postrow[$i]['user_aim'] ) ? '<a href="aim:goim?screenname=' . $postrow[$i]['user_aim'] . '&message=Hello+Are+you+there?"><img src="' . $images['icon_aim'] . '" alt="' . $lang['AIM'] . '" title="' . $lang['AIM'] . '" border="0" /></a>' : '';
  1169.         $aim = ( $postrow[$i]['user_aim'] ) ? '<a href="aim:goim?screenname=' . $postrow[$i]['user_aim'] . '&message=Hello+Are+you+there?">' . $lang['AIM'] . '</a>' : '';
  1170.  
  1171.         $temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$poster_id");
  1172.         $msn_img = ( $postrow[$i]['user_msnm'] ) ? '<a href="' . $temp_url . '"><img src="' . $images['icon_msnm'] . '" alt="' . $lang['MSNM'] . '" title="' . $lang['MSNM'] . '" border="0" /></a>' : '';
  1173.         $msn = ( $postrow[$i]['user_msnm'] ) ? '<a href="' . $temp_url . '">' . $lang['MSNM'] . '</a>' : '';
  1174.  
  1175.         $yim_img = ( $postrow[$i]['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $postrow[$i]['user_yim'] . '&.src=pg"><img src="' . $images['icon_yim'] . '" alt="' . $lang['YIM'] . '" title="' . $lang['YIM'] . '" border="0" /></a>' : '';
  1176.         $yim = ( $postrow[$i]['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $postrow[$i]['user_yim'] . '&.src=pg">' . $lang['YIM'] . '</a>' : '';
  1177.     }
  1178.     else
  1179.     {
  1180.         $profile_img = '';
  1181.         $profile = '';
  1182.         $pm_img = '';
  1183.         $pm = '';
  1184.         // Photo Album Link MOD - Daz - ForumImages.com - START
  1185.         $gallery_img = '';
  1186.         $gallery = '';
  1187.         // Photo Album Link MOD - Daz - ForumImages.com - END 
  1188.         $email_img = '';
  1189.         $email = '';
  1190.         $www_img = '';
  1191.         $www = '';
  1192.         $icq_status_img = '';
  1193.         $icq_img = '';
  1194.         $icq = '';
  1195.         $aim_img = '';
  1196.         $aim = '';
  1197.         $msn_img = '';
  1198.         $msn = '';
  1199.         $yim_img = '';
  1200.         $yim = '';
  1201.     }
  1202.  
  1203.     $temp_url = append_sid("posting.$phpEx?mode=quote&" . POST_POST_URL . "=" . $postrow[$i]['post_id']);
  1204.     $quote_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_quote'] . '" alt="' . $lang['Reply_with_quote'] . '" title="' . $lang['Reply_with_quote'] . '" border="0" /></a>';
  1205.     $quote = '<a href="' . $temp_url . '">' . $lang['Reply_with_quote'] . '</a>';
  1206.  
  1207.     $temp_url = append_sid("search.$phpEx?search_author=" . urlencode($postrow[$i]['username']) . "&showresults=posts");
  1208.     $search_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_search'] . '" alt="' . $lang['Search_user_posts'] . '" title="' . $lang['Search_user_posts'] . '" border="0" /></a>';
  1209.     $search = '<a href="' . $temp_url . '">' . $lang['Search_user_posts'] . '</a>';
  1210.  
  1211.     if ( ( $userdata['user_id'] == $poster_id && $is_auth['auth_edit'] ) || $is_auth['auth_mod'] )
  1212.     {
  1213.         $temp_url = append_sid("posting.$phpEx?mode=editpost&" . POST_POST_URL . "=" . $postrow[$i]['post_id']);
  1214.         $edit_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_edit'] . '" alt="' . $lang['Edit_delete_post'] . '" title="' . $lang['Edit_delete_post'] . '" border="0" /></a>';
  1215.         $edit = '<a href="' . $temp_url . '">' . $lang['Edit_delete_post'] . '</a>';
  1216.     }
  1217.     else
  1218.     {
  1219.         $edit_img = '';
  1220.         $edit = '';
  1221.     }
  1222.     
  1223.  
  1224.     if ( $is_auth['auth_mod'] )
  1225.     {
  1226.         $temp_url = "modcp.$phpEx?mode=ip&" . POST_POST_URL . "=" . $postrow[$i]['post_id'] . "&" . POST_TOPIC_URL . "=" . $topic_id . "&sid=" . $userdata['session_id'];
  1227.         $ip_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_ip'] . '" alt="' . $lang['View_IP'] . '" title="' . $lang['View_IP'] . '" border="0" /></a>';
  1228.         $ip = '<a href="' . $temp_url . '">' . $lang['View_IP'] . '</a>';
  1229.  
  1230.         $temp_url = "posting.$phpEx?mode=delete&" . POST_POST_URL . "=" . $postrow[$i]['post_id'] . "&sid=" . $userdata['session_id'];
  1231.         $delpost_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_delpost'] . '" alt="' . $lang['Delete_post'] . '" title="' . $lang['Delete_post'] . '" border="0" /></a>';
  1232.         $delpost = '<a href="' . $temp_url . '">' . $lang['Delete_post'] . '</a>';
  1233.     }
  1234.     else
  1235.     {
  1236.         $ip_img = '';
  1237.         $ip = '';
  1238.  
  1239.         if ( $userdata['user_id'] == $poster_id && $is_auth['auth_delete'] && $forum_topic_data['topic_last_post_id'] == $postrow[$i]['post_id'] )
  1240.         {
  1241.             $temp_url = "posting.$phpEx?mode=delete&" . POST_POST_URL . "=" . $postrow[$i]['post_id'] . "&sid=" . $userdata['session_id'];
  1242.             $delpost_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_delpost'] . '" alt="' . $lang['Delete_post'] . '" title="' . $lang['Delete_post'] . '" border="0" /></a>';
  1243.             $delpost = '<a href="' . $temp_url . '">' . $lang['Delete_post'] . '</a>';
  1244.         }
  1245.         else
  1246.         {
  1247.             $delpost_img = '';
  1248.             $delpost = '';
  1249.         }
  1250.     }
  1251.     if($poster_id != ANONYMOUS && $postrow[$i]['user_level'] != ADMIN) 
  1252.     $current_user = str_replace("'","\'",$postrow[$i]['username']);
  1253.     if ($is_auth['auth_greencard']) 
  1254.     { 
  1255.           $g_card_img = ' <input type="image" name="unban" value="unban" onClick="return confirm(\''.sprintf($lang['Green_card_warning'],$current_user).'\')" src="'. $images['icon_g_card'] . '" alt="' . $lang['Give_G_card'] . '" >'; 
  1256.     } 
  1257.     else 
  1258.     {
  1259.         $g_card_img = ''; 
  1260.     }
  1261.     $user_warnings = $postrow[$i]['user_warnings'];
  1262. //$card_img = ($user_warnings) ? (( $user_warnings < $board_config['max_user_bancard']) ? sprintf($lang['Warnings'], $user_warnings) : $lang['Banned'] ) : '';
  1263. // these lines will make a icon apear beside users post, if user have warnings or ar banned
  1264. // used instead of the previous line of code, witch shows the status as a text
  1265. //  ------ From here --- do not include this line
  1266. $card_img = ($user_warnings) ? '<img src="'.(( $user_warnings < $board_config['max_user_bancard']) ? 
  1267. $images['icon_y_card'] . '" alt="'. sprintf($lang['Warnings'], $user_warnings) .'">' : 
  1268. $images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">') : '';
  1269. //  ----- To this line --- Do not included this line
  1270. // 
  1271. // You may also included several images, instead of only one yellow, these lines below will produce several yellow images, depending on mumber of yellow cards
  1272. //  ------ From here --- do not include this line
  1273. //$card_img = ($user_warnings >= $board_config['max_user_bancard'])  ? '<img src="'.$images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">' : '';
  1274. //for ($n=0 ; $n<$user_warnings && $user_warnings < $board_config['max_user_bancard'];$n++)
  1275. //{
  1276. //$card_img .= ($user_warnings) ? '<img src="'.(( $user_warnings < $board_config['max_user_bancard']) ? 
  1277. //$images['icon_y_card'] . '" alt="'. sprintf($lang['Warnings'], $user_warnings) .'">' : 
  1278. //$images['icon_r_card'] . '" alt="'. $lang['Banned'] .'">') : '';
  1279. //}
  1280. //  ----- To this line --- Do not included this line
  1281.  
  1282.     if ($user_warnings<$board_config['max_user_bancard'] && $is_auth['auth_ban'] )
  1283.     { 
  1284.         $y_card_img = ' <input type="image" name="warn" value="warn" onClick="return confirm(\''.sprintf($lang['Yellow_card_warning'],$current_user).'\')" src="'. $images['icon_y_card'] . '" alt="' . sprintf($lang['Give_Y_card'],$user_warnings+1) . '" >'; 
  1285.              $r_card_img = ' <input type="image" name="ban" value="ban"  onClick="return confirm(\''.sprintf($lang['Red_card_warning'],$current_user).'\')" src="'. $images['icon_r_card'] . '" alt="' . $lang['Give_R_card'] . '" >'; 
  1286.     }
  1287.     else
  1288.     {
  1289.         $y_card_img = '';
  1290.         $r_card_img = ''; 
  1291.     } 
  1292. } else
  1293. {
  1294.     $card_img = '';
  1295.     $g_card_img = '';
  1296.     $y_card_img = '';
  1297.     $r_card_img = '';
  1298. }
  1299.  
  1300.     if ($is_auth['auth_bluecard']) 
  1301.     { 
  1302.         if ($is_auth['auth_mod']) 
  1303.         { 
  1304.             $b_card_img = (($postrow[$i]['post_bluecard'])) ? ' <input type="image" name="report_reset" value="report_reset" onClick="return confirm(\''.$lang['Clear_blue_card_warning'].'\')" src="'. $images['icon_bhot_card'] . '" alt="'. sprintf($lang['Clear_b_card'],$postrow[$i]['post_bluecard']) . '">':' <input type="image" name="report" value="report" onClick="return confirm(\''.$lang['Blue_card_warning'].'\')" src="'. $images['icon_b_card'] . '" alt="'. $lang['Give_b_card'] . '" >'; 
  1305.         } 
  1306.            else 
  1307.         { 
  1308.             $b_card_img = ' <input type="image" name="report" value="report" onClick="return confirm(\''.$lang['Blue_card_warning'].'\')" src="'. $images['icon_b_card'] . '" alt="'. $lang['Give_b_card'] . '" >';
  1309.             
  1310.            }
  1311.     } else $b_card_img = '';
  1312.  
  1313. // parse hidden filds if cards visible
  1314. $card_hidden = ($g_card_img || $r_card_img || $y_card_img || $b_card_img) ? '<input type="hidden" name="post_id" value="'. $postrow[$i]['post_id'].'">' :'';
  1315.  
  1316.     $post_subject = ( $postrow[$i]['post_subject'] != '' ) ? $postrow[$i]['post_subject'] : '';
  1317.  
  1318.     $message = $postrow[$i]['post_text'];
  1319.     $bbcode_uid = $postrow[$i]['bbcode_uid'];
  1320.  
  1321.     $user_sig = ( $postrow[$i]['enable_sig'] && $postrow[$i]['user_sig'] != '' && $board_config['allow_sig'] ) ? $postrow[$i]['user_sig'] : '';
  1322.     $user_sig_bbcode_uid = $postrow[$i]['user_sig_bbcode_uid'];
  1323.  
  1324.     //
  1325.     // Note! The order used for parsing the message _is_ important, moving things around could break any
  1326.     // output
  1327.     //
  1328.  
  1329.     //
  1330.     // If the board has HTML off but the post has HTML
  1331.     // on then we process it, else leave it alone
  1332.     //
  1333.     if ( !$board_config['allow_html'] )
  1334.     {
  1335.         if ( $user_sig != '' && $userdata['user_allowhtml'] )
  1336.         {
  1337.             $user_sig = preg_replace('#(<)([\/]?.*?)(>)#is', "<\\2>", $user_sig);
  1338.         }
  1339.  
  1340.         if ( $postrow[$i]['enable_html'] )
  1341.         {
  1342.             $message = preg_replace('#(<)([\/]?.*?)(>)#is', "<\\2>", $message);
  1343.         }
  1344.     }
  1345.  
  1346.     //
  1347.     // Parse message and/or sig for BBCode if reqd
  1348.     //
  1349.     if ( $board_config['allow_bbcode'] )
  1350.     {
  1351.         if ( $user_sig != '' && $user_sig_bbcode_uid != '' )
  1352.         {
  1353.             $user_sig = ( $board_config['allow_bbcode'] ) ? bbencode_second_pass($user_sig, $user_sig_bbcode_uid) : preg_replace('/\:[0-9a-z\:]+\]/si', ']', $user_sig);
  1354.         }
  1355.  
  1356.         if ( $bbcode_uid != '' )
  1357.         {
  1358.             $message = ( $board_config['allow_bbcode'] ) ? bbencode_second_pass($message, $bbcode_uid) : preg_replace('/\:[0-9a-z\:]+\]/si', ']', $message);
  1359.         }
  1360.     }
  1361.  
  1362.     if ( $user_sig != '' )
  1363.     {
  1364.         $user_sig = make_clickable($user_sig);
  1365.     }
  1366.     $message = make_clickable($message);
  1367.     // BEGIN CMX News Mod
  1368.     // Strip out the <!--break--> delimiter.
  1369.     $delim = htmlspecialchars( '<!--break-->' );
  1370.     $pos = strpos( $message, $delim );
  1371.     if( ($pos !== false) && ($pos < strlen( $message )) ) {
  1372.         $message = substr_replace( $message, html_entity_decode($delim), $pos, strlen($delim) );
  1373.     }
  1374.     // END CMX News Mod
  1375.     //
  1376.     // Parse smilies
  1377.     //
  1378.     if ( $board_config['allow_smilies'] )
  1379.     {
  1380.         if ( $postrow[$i]['user_allowsmile'] && $user_sig != '' )
  1381.         {
  1382.             $user_sig = smilies_pass($user_sig);
  1383.         }
  1384.  
  1385.         if ( $postrow[$i]['enable_smilies'] )
  1386.         {
  1387.             $message = smilies_pass($message);
  1388.         }
  1389.     }
  1390.  
  1391.     //
  1392.     // Highlight active words (primarily for search)
  1393.     //
  1394.     if ($highlight_match)
  1395.     {
  1396.         // This was shamelessly 'borrowed' from volker at multiartstudio dot de
  1397.         // via php.net's annotated manual
  1398.         $message = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace('#\b(" . $highlight_match . ")\b#i', '<span style=\"color:#" . $theme['fontcolor3'] . "\"><b>\\\\1</b></span>', '\\0')", '>' . $message . '<'), 1, -1));
  1399.     }
  1400.  
  1401.     //
  1402.     // Replace naughty words
  1403.     //
  1404.     if (count($orig_word))
  1405.     {
  1406.         $post_subject = preg_replace($orig_word, $replacement_word, $post_subject);
  1407.  
  1408.         if ($user_sig != '')
  1409.         {
  1410.             $user_sig = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace(\$orig_word, \$replacement_word, '\\0')", '>' . $user_sig . '<'), 1, -1));
  1411.         }
  1412.  
  1413.         $message = str_replace('\"', '"', substr(preg_replace('#(\>(((?>([^><]+|(?R)))*)\<))#se', "preg_replace(\$orig_word, \$replacement_word, '\\0')", '>' . $message . '<'), 1, -1));
  1414.     }
  1415.  
  1416.     //
  1417.     // Replace newlines (we use this rather than nl2br because
  1418.     // till recently it wasn't XHTML compliant)
  1419.     //
  1420.     if ( $user_sig != '' )
  1421.     {
  1422.         $user_sig = '_________________<br />' . str_replace("\n", "\n<br />\n", $user_sig);
  1423.     }
  1424.     $message = acronym_pass( $message );
  1425.     $message = str_replace("\n", "\n<br />\n", $message);
  1426.  
  1427.     //
  1428.     // Editing information
  1429.     //
  1430.     if ( $postrow[$i]['post_edit_count'] )
  1431.     {
  1432.         $l_edit_time_total = ( $postrow[$i]['post_edit_count'] == 1 ) ? $lang['Edited_time_total'] : $lang['Edited_times_total'];
  1433.  
  1434.         $l_edited_by = '<br /><br />' . sprintf($l_edit_time_total, $poster, create_date($board_config['default_dateformat'], $postrow[$i]['post_edit_time'], $board_config['board_timezone']), $postrow[$i]['post_edit_count']);
  1435.     }
  1436.     else
  1437.     {
  1438.         $l_edited_by = '';
  1439.     }
  1440.     //-- mod : post icon -------------------------------------------------------------------------------
  1441. //-- add
  1442.     $post_subject = get_icon_title($postrow[$i]['post_icon']) . ' ' . $post_subject;
  1443. //-- fin mod : post icon ---------------------------------------------------------------------------
  1444.     //-- mod : calendar --------------------------------------------------------------------------------
  1445. //-- add
  1446.     if (!empty($topic_calendar_time) && ($postrow[$i]['post_id'] == $topic_first_post_id))
  1447.     {
  1448.         $post_subject .= get_calendar_title($topic_calendar_time, $topic_calendar_duration);
  1449.     }
  1450. //-- fin mod : calendar ----------------------------------------------------------------------------
  1451.     if ( $postrow[$i]['user_absence'] == TRUE )
  1452.     {
  1453.         $absence_mode = create_absence_mode($postrow[$i]['user_absence_mode'], $pm_img, $pm, $email_img, $email, $poster);
  1454.     }
  1455.     //
  1456.     // Again this will be handled by the templating
  1457.     // code at some point
  1458.     //
  1459.     $row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2'];
  1460.     $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2'];
  1461.     //Online/Offline
  1462.     if (($postrow[$i]['user_session_time'] >= ( time() - 300 )) && ($postrow[$i]['user_allow_viewonline']))
  1463.     {
  1464.         $on_off_hidden = '<img src="' . $images['icon_online'] . '" alt="' . $lang['Online'] . '" title="' . $lang['Online'] . '" border="0" />';
  1465.     }
  1466.     else if (($postrow[$i]['user_allow_viewonline']) == 0)
  1467.     {
  1468.         $on_off_hidden = '<img src="' . $images['icon_hidden'] . '" alt="' . $lang['Hidden'] . '" title="' . $lang['Hidden'] . '" border="0" />';
  1469.     }
  1470.     else if ($poster_id == ANONYMOUS)
  1471.     {
  1472.         $on_off_hidden = '';
  1473.     }
  1474.     else
  1475.     {
  1476.         $on_off_hidden = '<img src="' . $images['icon_offline'] . '" alt="' . $lang['Offline'] . '" title="' . $lang['Offline'] . '" border="0" />';
  1477.     }
  1478.     $template->assign_block_vars('postrow', array(
  1479.         'ROW_COLOR' => '#' . $row_color,
  1480.         'ROW_CLASS' => $row_class,
  1481.         'POSTER_NAME' => $poster, 
  1482.         'ZODIAC_IMG' => $zodiac_img,
  1483.         'ZODIAC' => $zodiac,
  1484.         'U_ZODIAC' => $u_zodiac,
  1485.         'L_ZODIAC' => ($zodiac) ? $lang['Zodiac'] . ': ' : '',
  1486.         // Start add - Birthday MOD
  1487.         'POSTER_AGE' => $poster_age,
  1488.         'CHINESE' => $lang[$chinese],
  1489.         'CHINESE_IMG' => $chinese_img,
  1490.         'U_CHINESE' => $u_chinese,
  1491.         'L_CHINESE' => ($chinese) ? $lang['Chinese_zodiac'] . ': ' : '',
  1492.         // End add - Birthday MOD
  1493.         'POSTER_RANK' => $poster_rank,
  1494.         // Start add - Gender MOD
  1495.         'POSTER_GENDER' => $gender_image,
  1496.         // End add - Gender MOD
  1497.         'RANK_IMAGE' => $rank_image,
  1498.         'POSTER_JOINED' => $poster_joined,
  1499.         'POSTER_POSTS' => $poster_posts,
  1500.         'POSTER_FROM' => $poster_from,
  1501.         // FLAGHACK-start
  1502.         'POSTER_FROM_FLAG' => $poster_from_flag,
  1503.         // FLAGHACK-end
  1504.         'POSTER_AVATAR' => $poster_avatar,
  1505.         'POSTER_ONLINE' => $on_off_hidden,
  1506.         'POST_DATE' => $post_date,
  1507.         'POST_SUBJECT' => $post_subject,
  1508.         'MESSAGE' => $message,
  1509.         'SIGNATURE' => $user_sig,
  1510.         'EDITED_MESSAGE' => $l_edited_by,
  1511.  
  1512.         'MINI_POST_IMG' => $mini_post_img,
  1513.         'PROFILE_IMG' => $profile_img,
  1514.         'PROFILE' => $profile,
  1515.         'SEARCH_IMG' => $search_img,
  1516.         'SEARCH' => $search,
  1517.         'PM_IMG' => $pm_img,
  1518.         'PM' => $pm,
  1519.         // Photo Album Link MOD - Daz - ForumImages.com - START
  1520.         'GALLERY_IMG' => $gallery_img,
  1521.         'GALLERY' => $gallery,
  1522.         // Photo Album Link MOD - Daz - ForumImages.com - END 
  1523.         'EMAIL_IMG' => $email_img,
  1524.         'EMAIL' => $email,
  1525.         'WWW_IMG' => $www_img,
  1526.         'WWW' => $www,
  1527.         'ICQ_STATUS_IMG' => $icq_status_img,
  1528.         'ICQ_IMG' => $icq_img,
  1529.         'ICQ' => $icq,
  1530.         'AIM_IMG' => $aim_img,
  1531.         'AIM' => $aim,
  1532.         'MSN_IMG' => $msn_img,
  1533.         'MSN' => $msn,
  1534.         'YIM_IMG' => $yim_img,
  1535.         'YIM' => $yim,
  1536.         'EDIT_IMG' => $edit_img,
  1537.         'EDIT' => $edit,
  1538.         'QUOTE_IMG' => $quote_img,
  1539.         'QUOTE' => $quote,
  1540.         'IP_IMG' => $ip_img,
  1541.         'IP' => $ip,
  1542.         'DELETE_IMG' => $delpost_img,
  1543.         'DELETE' => $delpost,
  1544.         'USER_WARNINGS' => $user_warnings,
  1545.         'CARD_IMG' => $card_img,
  1546.         'CARD_HIDDEN_FIELDS' => $card_hidden,
  1547.         'CARD_EXTRA_SPACE' => ($r_card_img || $y_card_img || $g_card_img || $b_card_img) ? ' ' : '',
  1548.         // Start add - Gender MOD
  1549.         'L_GENDER' => $lang['Gender'],
  1550.         // End add - Gender MOD
  1551.         'L_MINI_POST_ALT' => $mini_post_alt,
  1552.  
  1553.         'U_MINI_POST' => $mini_post_url,
  1554.         'U_G_CARD' => $g_card_img, 
  1555.         'U_Y_CARD' => $y_card_img, 
  1556.         'U_R_CARD' => $r_card_img, 
  1557.         'U_B_CARD' => $b_card_img,
  1558.         'S_CARD' => append_sid("card.".$phpEx),
  1559.         'U_POST_ID' => $postrow[$i]['post_id'])
  1560.     );
  1561.     display_post_attachments($postrow[$i]['post_id'], $postrow[$i]['post_attachment']);
  1562. }
  1563.  
  1564.  
  1565.     
  1566.     
  1567.     if ($plus_config['show_quickreply'] == 1 && ($userdata['user_id']!= -1) && $forum_topic_data['topic_status'] == TOPIC_UNLOCKED)
  1568.         {
  1569.             include($phpbb_root_path . 'quick_reply.'.$phpEx);
  1570.                 $template->assign_block_vars('switch_show_quickreply', array());
  1571.         }
  1572.  
  1573.  
  1574. $template->assign_vars(array( 
  1575. "TELL_LINK" => append_sid("http://".$HTTP_SERVER_VARS['HTTP_HOST'].$HTTP_SERVER_VARS['PHP_SELF']."?t=$topic_id", true)));
  1576.  
  1577. $template->pparse('body');
  1578.  
  1579. include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
  1580.  
  1581. ?>
  1582.