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 / search.php < prev    next >
PHP Script  |  2004-11-18  |  50KB  |  1,593 lines

  1. <?php
  2. /***************************************************************************
  3.  *                                search.php
  4.  *                            -------------------
  5.  *   begin                : Saturday, Feb 13, 2001
  6.  *   copyright            : (C) 2001 The phpBB Group
  7.  *   email                : support@phpbb.com
  8.  *
  9.  *   $Id: search.php,v 1.72.2.12 2004/03/18 18:16:45 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($phpbb_root_path . 'includes/functions_search.'.$phpEx);
  29. //-- mod : calendar --------------------------------------------------------------------------------
  30. //-- add
  31. include_once($phpbb_root_path . 'includes/functions_calendar.'.$phpEx);//-- fin mod : calendar ----------------------------------------------------------------------------
  32. include_once($phpbb_root_path.'includes/functions_color_groups.'.$phpEx); 
  33. include($phpbb_root_path . 'includes/functions_bookmark.'.$phpEx);
  34. //
  35. // Start session management
  36. //
  37. $userdata = session_pagestart($user_ip, PAGE_SEARCH);
  38. init_userprefs($userdata);
  39. //
  40. // End session management
  41. //
  42.  
  43. //
  44. // Define initial vars
  45. //
  46. if ( isset($HTTP_POST_VARS['mode']) || isset($HTTP_GET_VARS['mode']) )
  47. {
  48.     $mode = ( isset($HTTP_POST_VARS['mode']) ) ? $HTTP_POST_VARS['mode'] : $HTTP_GET_VARS['mode'];
  49. }
  50. else
  51. {
  52.     $mode = '';
  53. }
  54. $only_bluecards = ( isset($HTTP_POST_VARS['only_bluecards']) ) ? ( ($HTTP_POST_VARS['only_bluecards']) ? TRUE : 0 ) : 0;
  55. if ( isset($HTTP_POST_VARS['search_keywords']) || isset($HTTP_GET_VARS['search_keywords']) )
  56. {
  57.     $search_keywords = ( isset($HTTP_POST_VARS['search_keywords']) ) ? $HTTP_POST_VARS['search_keywords'] : $HTTP_GET_VARS['search_keywords'];
  58. }
  59. else
  60. {
  61.     $search_keywords = '';
  62. }
  63.  
  64. if ( isset($HTTP_POST_VARS['search_author']) || isset($HTTP_GET_VARS['search_author']))
  65. {
  66.     $search_author = ( isset($HTTP_POST_VARS['search_author']) ) ? $HTTP_POST_VARS['search_author'] : $HTTP_GET_VARS['search_author'];
  67.     $search_author = phpbb_clean_username($search_author);
  68. }
  69. else
  70. {
  71.     $search_author = '';
  72. }
  73.  
  74. $search_id = ( isset($HTTP_GET_VARS['search_id']) ) ? $HTTP_GET_VARS['search_id'] : '';
  75.  
  76. $show_results = ( isset($HTTP_POST_VARS['show_results']) ) ? $HTTP_POST_VARS['show_results'] : 'posts';
  77. $show_results = ($show_results == 'topics') ? 'topics' : 'posts';
  78.  
  79. if ( isset($HTTP_POST_VARS['search_terms']) )
  80. {
  81.     $search_terms = ( $HTTP_POST_VARS['search_terms'] == 'all' ) ? 1 : 0;
  82. }
  83. else
  84. {
  85.     $search_terms = 0;
  86. }
  87.  
  88. if ( isset($HTTP_POST_VARS['search_fields']) )
  89. {
  90.     $search_fields = ( $HTTP_POST_VARS['search_fields'] == 'all' ) ? 1 : 0;
  91. }
  92. else
  93. {
  94.     $search_fields = 0;
  95. }
  96.  
  97. $return_chars = ( isset($HTTP_POST_VARS['return_chars']) ) ? intval($HTTP_POST_VARS['return_chars']) : 200;
  98.  
  99. //-- mod : categories hierarchy --------------------------------------------------------------------
  100. //-- delete
  101. // $search_cat = ( isset($HTTP_POST_VARS['search_cat']) ) ? intval($HTTP_POST_VARS['search_cat']) : -1;
  102. // $search_forum = ( isset($HTTP_POST_VARS['search_forum']) ) ? intval($HTTP_POST_VARS['search_forum']) : -1;
  103. //-- add
  104. $search_where =  ( isset($HTTP_POST_VARS['search_where']) ) ? $HTTP_POST_VARS['search_where'] : 'Root';
  105. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  106.  
  107. $sort_by = ( isset($HTTP_POST_VARS['sort_by']) ) ? intval($HTTP_POST_VARS['sort_by']) : 0;
  108.  
  109. if ( isset($HTTP_POST_VARS['sort_dir']) )
  110. {
  111.     $sort_dir = ( $HTTP_POST_VARS['sort_dir'] == 'DESC' ) ? 'DESC' : 'ASC';
  112. }
  113. else
  114. {
  115.     $sort_dir =  'DESC';
  116. }
  117.  
  118. if ( !empty($HTTP_POST_VARS['search_time']) || !empty($HTTP_GET_VARS['search_time']))
  119. {
  120.     $search_time = time() - ( ( ( !empty($HTTP_POST_VARS['search_time']) ) ? intval($HTTP_POST_VARS['search_time']) : intval($HTTP_GET_VARS['search_time']) ) * 86400 );
  121.     $topic_days = (!empty($HTTP_POST_VARS['search_time'])) ? intval($HTTP_POST_VARS['search_time']) : intval($HTTP_GET_VARS['search_time']);
  122. }
  123. else
  124. {
  125.     $search_time = 0;
  126.     $topic_days = 0;
  127. }
  128.  
  129. $start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) : 0;
  130.  
  131. $sort_by_types = array($lang['Sort_Time'], $lang['Sort_Post_Subject'], $lang['Sort_Topic_Title'], $lang['Sort_Author'], $lang['Sort_Forum']);
  132.  
  133. //
  134. // encoding match for workaround
  135. //
  136. $multibyte_charset = 'utf-8, big5, shift_jis, euc-kr, gb2312';
  137.  
  138. //
  139. // Begin core code
  140. //
  141. if ( $mode == 'removebm' )
  142. {
  143.     // Delete Bookmarks
  144.     $delete = ( isset($HTTP_POST_VARS['delete']) ) ? TRUE : FALSE;
  145.     if ( $delete && isset($HTTP_POST_VARS['topic_id_list']))
  146.     {
  147.         $topics = $HTTP_POST_VARS['topic_id_list'];
  148.         for($i = 0; $i < count($topics); $i++)
  149.         {
  150.             $topic_list .= ( ( $topic_list != '' ) ? ', ' : '' ) . intval($topics[$i]);
  151.         }
  152.         if ( $userdata['session_logged_in'] )
  153.         {
  154.             remove_bookmark($topic_list);
  155.         }
  156.         else
  157.         {
  158.             redirect(append_sid("login.$phpEx?redirect=search.$phpEx?search_id=bookmarks", true));
  159.         }
  160.     }
  161.     // Reset settings
  162.     $mode = '';
  163. }
  164. if ( $mode == 'searchuser' )
  165. {
  166.     //
  167.     // This handles the simple windowed user search functions called from various other scripts
  168.     //
  169.     if ( isset($HTTP_POST_VARS['search_username']) )
  170.     {
  171.         username_search($HTTP_POST_VARS['search_username']);
  172.     }
  173.     else
  174.     {
  175.         username_search('');
  176.     }
  177.  
  178.     exit;
  179. }
  180. else if ( $search_keywords != '' || $search_author != '' || $search_id )
  181. {
  182.     $store_vars = array('search_results', 'total_match_count', 'split_search', 'sort_by', 'sort_dir', 'show_results', 'return_chars');
  183.     $search_results = '';
  184.  
  185.     //
  186.     // Search ID Limiter, decrease this value if you experience further timeout problems with searching forums
  187.     $limiter = 5000;
  188.  
  189.     //
  190.     // Cycle through options ...
  191.     //
  192.     if ( $search_id == 'newposts' || $search_id == 'egosearch' || $search_id == 'unanswered' || $search_id == 'bookmarks' || $search_keywords != '' || $search_author != '' )
  193.     {
  194.         if ( $search_id == 'newposts' || $search_id == 'egosearch' || ( $search_author != '' && $search_keywords == '' )  )
  195.         {
  196.             if ( $search_id == 'newposts' )
  197.             {
  198.                 if ( $userdata['session_logged_in'] )
  199.                 {
  200.                     $sql = "SELECT post_id 
  201.                         FROM " . POSTS_TABLE . " 
  202.                         WHERE post_time >= " . $userdata['user_lastvisit'];
  203.                 }
  204.                 else
  205.                 {
  206.                     redirect(append_sid("login.$phpEx?redirect=search.$phpEx&search_id=newposts", true));
  207.                 }
  208.  
  209.                 $show_results = 'topics';
  210.                 $sort_by = 0;
  211.                 $sort_dir = 'DESC';
  212.             }
  213.             else if ( $search_id == 'egosearch' )
  214.             {
  215.                 if ( $userdata['session_logged_in'] )
  216.                 {
  217.                     $sql = "SELECT post_id 
  218.                         FROM " . POSTS_TABLE . " 
  219.                         WHERE poster_id = " . $userdata['user_id'];
  220.                 }
  221.                 else
  222.                 {
  223.                     redirect(append_sid("login.$phpEx?redirect=search.$phpEx&search_id=egosearch", true));
  224.                 }
  225.  
  226.                 $show_results = 'topics';
  227.                 $sort_by = 0;
  228.                 $sort_dir = 'DESC';
  229.             }
  230.             else
  231.             {
  232.                 $search_author = str_replace('*', '%', trim($search_author));
  233.                 
  234.                 $sql = "SELECT user_id
  235.                     FROM " . USERS_TABLE . "
  236.                     WHERE username LIKE '" . str_replace("\'", "''", $search_author) . "'";
  237.                 if ( !($result = $db->sql_query($sql)) )
  238.                 {
  239.                     message_die(GENERAL_ERROR, "Couldn't obtain list of matching users (searching for: $search_author)", "", __LINE__, __FILE__, $sql);
  240.                 }
  241.  
  242.                 $matching_userids = '';
  243.                 if ( $row = $db->sql_fetchrow($result) )
  244.                 {
  245.                     do
  246.                     {
  247.                         $matching_userids .= ( ( $matching_userids != '' ) ? ', ' : '' ) . $row['user_id'];
  248.                     }
  249.                     while( $row = $db->sql_fetchrow($result) );
  250.                 }
  251.                 else
  252.                 {
  253.                     message_die(GENERAL_MESSAGE, $lang['No_search_match']);
  254.                 }
  255.  
  256.                 $sql = "SELECT post_id 
  257.                     FROM " . POSTS_TABLE . " 
  258.                     WHERE poster_id IN ($matching_userids)";
  259.                     $sql .= ($only_bluecards) ? " AND post_bluecard>0 " : "";
  260.                 if ($search_time)
  261.                 {
  262.                     $sql .= " AND post_time >= " . $search_time;
  263.                 }
  264.             }
  265.  
  266.             if ( !($result = $db->sql_query($sql)) )
  267.             {
  268.                 message_die(GENERAL_ERROR, 'Could not obtain matched posts list', '', __LINE__, __FILE__, $sql);
  269.             }
  270.  
  271.             $search_ids = array();
  272.             while( $row = $db->sql_fetchrow($result) )
  273.             {
  274.                 $search_ids[] = $row['post_id'];
  275.             }
  276.             $db->sql_freeresult($result);
  277.  
  278.             $total_match_count = count($search_ids);
  279.  
  280.         }
  281.         else if ( $search_keywords != '' )
  282.         {
  283.             $stopword_array = @file($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/search_stopwords.txt'); 
  284.             $synonym_array = @file($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/search_synonyms.txt'); 
  285.  
  286.             $split_search = array();
  287.             $split_search = ( !strstr($multibyte_charset, $lang['ENCODING']) ) ?  split_words(clean_words('search', stripslashes($search_keywords), $stopword_array, $synonym_array), 'search') : split(' ', $search_keywords);    
  288.  
  289.             $search_msg_only = ( !$search_fields ) ? "AND m.title_match = 0" : ( ( strstr($multibyte_charset, $lang['ENCODING']) ) ? '' : '' );
  290.  
  291.             $word_count = 0;
  292.             $current_match_type = 'or';
  293.  
  294.             $word_match = array();
  295.             $result_list = array();
  296.  
  297.             for($i = 0; $i < count($split_search); $i++)
  298.             {
  299.                 switch ( $split_search[$i] )
  300.                 {
  301.                     case 'and':
  302.                         $current_match_type = 'and';
  303.                         break;
  304.  
  305.                     case 'or':
  306.                         $current_match_type = 'or';
  307.                         break;
  308.  
  309.                     case 'not':
  310.                         $current_match_type = 'not';
  311.                         break;
  312.  
  313.                     default:
  314.                         if ( !empty($search_terms) )
  315.                         {
  316.                             $current_match_type = 'and';
  317.                         }
  318.  
  319.                         if ( !strstr($multibyte_charset, $lang['ENCODING']) )
  320.                         {
  321.                             $match_word = str_replace('*', '%', $split_search[$i]);
  322.                             $search_msg_only .= ($only_bluecards) ? " AND p.post_bluecard>0 AND m.post_id=p.post_id " : "";
  323.                             $sql = "SELECT m.post_id 
  324.                                 FROM " . SEARCH_WORD_TABLE . " w, " . SEARCH_MATCH_TABLE . " m " . (($only_bluecards) ? ','.POSTS_TABLE . ' p ' : '') . "
  325.                                 WHERE w.word_text LIKE '$match_word' 
  326.                                     AND m.word_id = w.word_id 
  327.                                     AND w.word_common <> 1 
  328.                                     $search_msg_only";
  329.                         }
  330.                         else
  331.                         {
  332.                             $match_word =  addslashes('%' . str_replace('*', '', $split_search[$i]) . '%');
  333.                             $search_msg_only = ( $search_fields ) ? "OR pt.post_subject LIKE '$match_word'" : ''; 
  334.                             $search_msg_only .= ($only_bluecards) ? " AND p.post_bluecard>0 AND pt.post_id=p.post_id " : ""; 
  335.                                              $sql = "SELECT pt.post_id 
  336.                                             FROM " . POSTS_TEXT_TABLE . "
  337.                                  pt " . (($only_bluecards) ? ','.POSTS_TABLE . ' p ' : '') . "
  338.                                             WHERE pt.post_text LIKE '$match_word'
  339.                                 $search_msg_only";
  340.                         }
  341.                         if ( !($result = $db->sql_query($sql)) )
  342.                         {
  343.                             message_die(GENERAL_ERROR, 'Could not obtain matched posts list', '', __LINE__, __FILE__, $sql);
  344.                         }
  345.  
  346.                         $row = array();
  347.                         while( $temp_row = $db->sql_fetchrow($result) )
  348.                         {
  349.                             $row[$temp_row['post_id']] = 1;
  350.  
  351.                             if ( !$word_count )
  352.                             {
  353.                                 $result_list[$temp_row['post_id']] = 1;
  354.                             }
  355.                             else if ( $current_match_type == 'or' )
  356.                             {
  357.                                 $result_list[$temp_row['post_id']] = 1;
  358.                             }
  359.                             else if ( $current_match_type == 'not' )
  360.                             {
  361.                                 $result_list[$temp_row['post_id']] = 0;
  362.                             }
  363.                         }
  364.  
  365.                         if ( $current_match_type == 'and' && $word_count )
  366.                         {
  367.                             @reset($result_list);
  368.                             while( list($post_id, $match_count) = @each($result_list) )
  369.                             {
  370.                                 if ( !$row[$post_id] )
  371.                                 {
  372.                                     $result_list[$post_id] = 0;
  373.                                 }
  374.                             }
  375.                         }
  376.  
  377.                         $word_count++;
  378.  
  379.                         $db->sql_freeresult($result);
  380.                     }
  381.             }
  382.  
  383.             @reset($result_list);
  384.  
  385.             $search_ids = array();
  386.             while( list($post_id, $matches) = each($result_list) )
  387.             {
  388.                 if ( $matches )
  389.                 {
  390.                     $search_ids[] = $post_id;
  391.                 }
  392.             }    
  393.             
  394.             unset($result_list);
  395.             $total_match_count = count($search_ids);
  396.         }
  397.  
  398.         //
  399.         // If user is logged in then we'll check to see which (if any) private
  400.         // forums they are allowed to view and include them in the search.
  401.         //
  402.         // If not logged in we explicitly prevent searching of private forums
  403.         //
  404.         $auth_sql = '';
  405.         //-- mod : categories hierarchy --------------------------------------------------------------------
  406. //-- delete
  407. //        if ( $search_forum != -1 )
  408. //        {
  409. //            $is_auth = auth(AUTH_READ, $search_forum, $userdata);
  410. //
  411. //            if ( !$is_auth['auth_read'] )
  412. //            {
  413. //                message_die(GENERAL_MESSAGE, $lang['No_searchable_forums']);
  414. //            }
  415. //
  416. //            $auth_sql = "f.forum_id = $search_forum";
  417. //        }
  418. //        else
  419. //        {
  420. //            $is_auth_ary = auth(AUTH_READ, AUTH_LIST_ALL, $userdata); 
  421. //
  422. //            if ( $search_cat != -1 )
  423. //            {
  424. //                $auth_sql = "f.cat_id = $search_cat";
  425. //            }
  426. //
  427. //            $ignore_forum_sql = '';
  428. //            while( list($key, $value) = each($is_auth_ary) )
  429. //            {
  430. //                if ( !$value['auth_read'] )
  431. //                {
  432. //                    $ignore_forum_sql .= ( ( $ignore_forum_sql != '' ) ? ', ' : '' ) . $key;
  433. //                }
  434. //            }
  435. //
  436. //            if ( $ignore_forum_sql != '' )
  437. //            {
  438. //                $auth_sql .= ( $auth_sql != '' ) ? " AND f.forum_id NOT IN ($ignore_forum_sql) " : "f.forum_id NOT IN ($ignore_forum_sql) ";
  439. //            }
  440. //        }
  441. //-- add
  442.         // get the object list
  443.         $keys = array();
  444.         $keys = get_auth_keys($search_where, true, -1, -1, 'auth_read');
  445.         $s_flist = '';
  446.         for ($i=0; $i < count($keys['id']); $i++)
  447.         {
  448.             if ( ($tree['type'][ $keys['idx'][$i] ] == POST_FORUM_URL) && $tree['auth'][ $keys['id'][$i] ]['auth_read'] )
  449.             {
  450.                 $s_flist .= (($s_flist != '') ? ', ' : '') . $tree['id'][ $keys['idx'][$i] ];
  451.             }
  452.         }
  453.         if ($s_flist != '')
  454.         {
  455.             $auth_sql .= (( $auth_sql != '' ) ? " AND" : '') . " f.forum_id IN ($s_flist) ";
  456.         }
  457. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  458.  
  459.  
  460.         //
  461.         // Author name search 
  462.         //
  463.         if ( $search_author != '' )
  464.         {
  465.             $search_author = str_replace('*', '%', trim(str_replace("\'", "''", $search_author)));
  466.         }
  467.  
  468.         if ( $total_match_count )
  469.         {
  470.             if ( $show_results == 'topics' )
  471.             {
  472.                 //
  473.                 // This one is a beast, try to seperate it a bit (workaround for connection timeouts)
  474.                 //
  475.                 $search_id_chunks = array();
  476.                 $count = 0;
  477.                 $chunk = 0;
  478.  
  479.                 if (count($search_ids) > $limiter)
  480.                 {
  481.                     for ($i = 0; $i < count($search_ids); $i++) 
  482.                     {
  483.                         if ($count == $limiter)
  484.                         {
  485.                             $chunk++;
  486.                             $count = 0;
  487.                         }
  488.                     
  489.                         $search_id_chunks[$chunk][$count] = $search_ids[$i];
  490.                         $count++;
  491.                     }
  492.                 }
  493.                 else
  494.                 {
  495.                     $search_id_chunks[0] = $search_ids;
  496.                 }
  497.  
  498.                 $search_ids = array();
  499.  
  500.                 for ($i = 0; $i < count($search_id_chunks); $i++)
  501.                 {
  502.                     $where_sql = '';
  503.  
  504.                     if ( $search_time )
  505.                     {
  506.                         $where_sql .= ( $search_author == '' && $auth_sql == ''  ) ? " AND post_time >= $search_time " : " AND p.post_time >= $search_time ";
  507.                     }
  508.     
  509.                     if ( $search_author == '' && $auth_sql == '' )
  510.                     {
  511.                         $sql = "SELECT topic_id 
  512.                             FROM " . POSTS_TABLE . "
  513.                             WHERE post_id IN (" . implode(", ", $search_id_chunks[$i]) . ") 
  514.                             $where_sql 
  515.                             GROUP BY topic_id";
  516.                     }
  517.                     else
  518.                     {
  519.                         $from_sql = POSTS_TABLE . " p"; 
  520.  
  521.                         if ( $search_author != '' )
  522.                         {
  523.                             $from_sql .= ", " . USERS_TABLE . " u";
  524.                             $where_sql .= " AND u.user_id = p.poster_id AND u.username LIKE '$search_author' ";
  525.                         }
  526.  
  527.                         if ( $auth_sql != '' )
  528.                         {
  529.                             $from_sql .= ", " . FORUMS_TABLE . " f";
  530.                             $where_sql .= " AND f.forum_id = p.forum_id AND $auth_sql";
  531.                         }
  532.  
  533.                         $sql = "SELECT p.topic_id 
  534.                             FROM $from_sql 
  535.                             WHERE p.post_id IN (" . implode(", ", $search_id_chunks[$i]) . ") 
  536.                                 $where_sql 
  537.                             GROUP BY p.topic_id";
  538.                     }
  539.  
  540.                     if ( !($result = $db->sql_query($sql)) )
  541.                     {
  542.                         message_die(GENERAL_ERROR, 'Could not obtain topic ids', '', __LINE__, __FILE__, $sql);
  543.                     }
  544.  
  545.                     while ($row = $db->sql_fetchrow($result))
  546.                     {
  547.                         $search_ids[] = $row['topic_id'];
  548.                     }
  549.                     $db->sql_freeresult($result);
  550.                 }
  551.  
  552.                 $total_match_count = sizeof($search_ids);
  553.         
  554.             }
  555.             else if ( $search_author != '' || $search_time || $auth_sql != '' )
  556.             {
  557.                 $search_id_chunks = array();
  558.                 $count = 0;
  559.                 $chunk = 0;
  560.  
  561.                 if (count($search_ids) > $limiter)
  562.                 {
  563.                     for ($i = 0; $i < count($search_ids); $i++) 
  564.                     {
  565.                         if ($count == $limiter)
  566.                         {
  567.                             $chunk++;
  568.                             $count = 0;
  569.                         }
  570.                     
  571.                         $search_id_chunks[$chunk][$count] = $search_ids[$i];
  572.                         $count++;
  573.                     }
  574.                 }
  575.                 else
  576.                 {
  577.                     $search_id_chunks[0] = $search_ids;
  578.                 }
  579.  
  580.                 $search_ids = array();
  581.  
  582.                 for ($i = 0; $i < count($search_id_chunks); $i++)
  583.                 {
  584.                     $where_sql = ( $search_author == '' && $auth_sql == '' ) ? 'post_id IN (' . implode(', ', $search_id_chunks[$i]) . ')' : 'p.post_id IN (' . implode(', ', $search_id_chunks[$i]) . ')';
  585.                     $select_sql = ( $search_author == '' && $auth_sql == '' ) ? 'post_id' : 'p.post_id';
  586.                     $from_sql = (  $search_author == '' && $auth_sql == '' ) ? POSTS_TABLE : POSTS_TABLE . ' p';
  587.  
  588.                     if ( $search_time )
  589.                     {
  590.                         $where_sql .= ( $search_author == '' && $auth_sql == '' ) ? " AND post_time >= $search_time " : " AND p.post_time >= $search_time";
  591.                     }
  592.  
  593.                     if ( $auth_sql != '' )
  594.                     {
  595.                         $from_sql .= ", " . FORUMS_TABLE . " f";
  596.                         $where_sql .= " AND f.forum_id = p.forum_id AND $auth_sql";
  597.                     }
  598.  
  599.                     if ( $search_author != '' )
  600.                     {
  601.                         $from_sql .= ", " . USERS_TABLE . " u";
  602.                         $where_sql .= " AND u.user_id = p.poster_id AND u.username LIKE '$search_author'";
  603.                     }
  604.  
  605.                     $sql = "SELECT " . $select_sql . " 
  606.                         FROM $from_sql 
  607.                         WHERE $where_sql";
  608.                     if ( !($result = $db->sql_query($sql)) )
  609.                     {
  610.                         message_die(GENERAL_ERROR, 'Could not obtain post ids', '', __LINE__, __FILE__, $sql);
  611.                     }
  612.  
  613.                     while( $row = $db->sql_fetchrow($result) )
  614.                     {
  615.                         $search_ids[] = $row['post_id'];
  616.                     }
  617.                     $db->sql_freeresult($result);
  618.                 }
  619.  
  620.                 $total_match_count = count($search_ids);
  621.             }
  622.         }
  623.         else if ( $search_id == 'unanswered' )
  624.         {
  625.             if ( $auth_sql != '' )
  626.             {
  627.                 $sql = "SELECT t.topic_id, f.forum_id
  628.                     FROM " . TOPICS_TABLE . "  t, " . FORUMS_TABLE . " f
  629.                     WHERE t.topic_replies = 0 
  630.                         AND t.forum_id = f.forum_id
  631.                         AND t.topic_moved_id = 0
  632.                         AND $auth_sql";
  633.             }
  634.             else
  635.             {
  636.                 $sql = "SELECT topic_id 
  637.                     FROM " . TOPICS_TABLE . "  
  638.                     WHERE topic_replies = 0 
  639.                         AND topic_moved_id = 0";
  640.             }
  641.                 
  642.             if ( !($result = $db->sql_query($sql)) )
  643.             {
  644.                 message_die(GENERAL_ERROR, 'Could not obtain post ids', '', __LINE__, __FILE__, $sql);
  645.             }
  646.  
  647.             $search_ids = array();
  648.             while( $row = $db->sql_fetchrow($result) )
  649.             {
  650.                 $search_ids[] = $row['topic_id'];
  651.             }
  652.             $db->sql_freeresult($result);
  653.  
  654.             $total_match_count = count($search_ids);
  655.  
  656.             //
  657.             // Basic requirements
  658.             //
  659.             $show_results = 'topics';
  660.             $sort_by = 0;
  661.             $sort_dir = 'DESC';
  662.         }
  663.         else if ( $search_id == 'bookmarks' )
  664.         {
  665.             if ( $userdata['session_logged_in'] )
  666.             {
  667.                 if ( $auth_sql != '' )
  668.                 {
  669.                     $sql = "SELECT t.topic_id, f.forum_id
  670.                         FROM " . TOPICS_TABLE . "  t, " . BOOKMARK_TABLE . " b, " . FORUMS_TABLE . " f
  671.                         WHERE t.topic_id = b.topic_id
  672.                             AND t.forum_id = f.forum_id
  673.                             AND b.user_id = " . $userdata['user_id'] . "
  674.                             AND $auth_sql";
  675.                 }
  676.                 else
  677.                 {
  678.                     $sql = "SELECT t.topic_id
  679.                         FROM " . TOPICS_TABLE . " t, " . BOOKMARK_TABLE . " b
  680.                         WHERE t.topic_id = b.topic_id
  681.                             AND b.user_id = " . $userdata['user_id'];
  682.                 }
  683.             }
  684.             else
  685.             {
  686.                 redirect(append_sid("login.$phpEx?redirect=search.$phpEx?search_id=bookmarks", true));
  687.             }
  688.  
  689.             if ( !($result = $db->sql_query($sql)) )
  690.             {
  691.                 message_die(GENERAL_ERROR, 'Could not obtain post ids', '', __LINE__, __FILE__, $sql);
  692.             }
  693.  
  694.             $search_ids = array();
  695.             while( $row = $db->sql_fetchrow($result) )
  696.             {
  697.                 $search_ids[] = $row['topic_id'];
  698.             }
  699.             $db->sql_freeresult($result);
  700.  
  701.             $total_match_count = count($search_ids);
  702.             if ($total_match_count <= $start) // No results for the selected page
  703.             {
  704.                 $start = $total_match_count - 1;
  705.                 $start = intval($start / $board_config['topics_per_page']) * $board_config['topics_per_page'];
  706.             }
  707.  
  708.             //
  709.             // Basic requirements
  710.             //
  711.             $show_results = 'bookmarks';
  712.             $sort_by = 0;
  713.             $sort_dir = 'DESC';
  714.         }
  715.         else
  716.         {
  717.             message_die(GENERAL_MESSAGE, $lang['No_search_match']);
  718.         }
  719.  
  720.         //
  721.         // Finish building query (for all combinations)
  722.         // and run it ...
  723.         //
  724.         // Start replacement - Last visit MOD
  725.         $expiry_time = $current_time - $board_config['session_length'];
  726.         $sql = "SELECT session_id
  727.             FROM " . SESSIONS_TABLE ." WHERE session_time>$expiry_time";
  728.         // Start replacement - Last visit MOD
  729.         if ( $result = $db->sql_query($sql) )
  730.         {
  731.             $delete_search_ids = array();
  732.             while( $row = $db->sql_fetchrow($result) )
  733.             {
  734.                 $delete_search_ids[] = "'" . $row['session_id'] . "'";
  735.             }
  736.  
  737.             if ( count($delete_search_ids) )
  738.             {
  739.                 $sql = "DELETE FROM " . SEARCH_TABLE . " 
  740.                     WHERE session_id NOT IN (" . implode(", ", $delete_search_ids) . ")";
  741.                 if ( !$result = $db->sql_query($sql) )
  742.                 {
  743.                     message_die(GENERAL_ERROR, 'Could not delete old search id sessions', '', __LINE__, __FILE__, $sql);
  744.                 }
  745.             }
  746.         }
  747.  
  748.         //
  749.         // Store new result data
  750.         //
  751.         $search_results = implode(', ', $search_ids);
  752.         $per_page = ( $show_results == 'posts' ) ? $board_config['posts_per_page'] : $board_config['topics_per_page'];
  753.  
  754.         //
  755.         // Combine both results and search data (apart from original query)
  756.         // so we can serialize it and place it in the DB
  757.         //
  758.         $store_search_data = array();
  759.  
  760.         //
  761.         // Limit the character length (and with this the results displayed at all following pages) to prevent
  762.         // truncated result arrays. Normally, search results above 12000 are affected.
  763.         // - to include or not to include
  764.         /*
  765.         $max_result_length = 60000;
  766.         if (strlen($search_results) > $max_result_length)
  767.         {
  768.             $search_results = substr($search_results, 0, $max_result_length);
  769.             $search_results = substr($search_results, 0, strrpos($search_results, ','));
  770.             $total_match_count = count(explode(', ', $search_results));
  771.         }
  772.         */
  773.  
  774.         for($i = 0; $i < count($store_vars); $i++)
  775.         {
  776.             $store_search_data[$store_vars[$i]] = $$store_vars[$i];
  777.         }
  778.  
  779.         $result_array = serialize($store_search_data);
  780.         unset($store_search_data);
  781.  
  782.         mt_srand ((double) microtime() * 1000000);
  783.         $search_id = mt_rand();
  784.  
  785.         $sql = "UPDATE " . SEARCH_TABLE . " 
  786.             SET search_id = $search_id, search_array = '" . str_replace("\'", "''", $result_array) . "'
  787.             WHERE session_id = '" . $userdata['session_id'] . "'";
  788.         if ( !($result = $db->sql_query($sql)) || !$db->sql_affectedrows() )
  789.         {
  790.             $sql = "INSERT INTO " . SEARCH_TABLE . " (search_id, session_id, search_array) 
  791.                 VALUES($search_id, '" . $userdata['session_id'] . "', '" . str_replace("\'", "''", $result_array) . "')";
  792.             if ( !($result = $db->sql_query($sql)) )
  793.             {
  794.                 message_die(GENERAL_ERROR, 'Could not insert search results', '', __LINE__, __FILE__, $sql);
  795.             }
  796.         }
  797.     }
  798.     else
  799.     {
  800.         $search_id = intval($search_id);
  801.         if ( $search_id )
  802.         {
  803.             $sql = "SELECT search_array 
  804.                 FROM " . SEARCH_TABLE . " 
  805.                 WHERE search_id = $search_id  
  806.                     AND session_id = '". $userdata['session_id'] . "'";
  807.             if ( !($result = $db->sql_query($sql)) )
  808.             {
  809.                 message_die(GENERAL_ERROR, 'Could not obtain search results', '', __LINE__, __FILE__, $sql);
  810.             }
  811.  
  812.             if ( $row = $db->sql_fetchrow($result) )
  813.             {
  814.                 $search_data = unserialize($row['search_array']);
  815.                 for($i = 0; $i < count($store_vars); $i++)
  816.                 {
  817.                     $$store_vars[$i] = $search_data[$store_vars[$i]];
  818.                 }
  819.             }
  820.         }
  821.     }
  822.  
  823.     //
  824.     // Look up data ...
  825.     //
  826.     if ( $search_results != '' )
  827.     {
  828.         if ( $show_results == 'posts' )
  829.         {
  830.             $sql = "SELECT pt.post_text, pt.bbcode_uid, pt.post_subject, p.*, f.forum_id, f.forum_name, t.*, u.username, u.user_id, u.user_sig, u.user_sig_bbcode_uid  
  831.                 FROM " . FORUMS_TABLE . " f, " . TOPICS_TABLE . " t, " . USERS_TABLE . " u, " . POSTS_TABLE . " p, " . POSTS_TEXT_TABLE . " pt 
  832.                 WHERE p.post_id IN ($search_results)
  833.                     AND pt.post_id = p.post_id
  834.                     AND f.forum_id = p.forum_id
  835.                     AND p.topic_id = t.topic_id
  836.                     AND p.poster_id = u.user_id";
  837.         }
  838.         else
  839.         {
  840.             $sql = "SELECT t.*, f.forum_id, f.forum_name, u.username, u.user_id, u2.username as user2, u2.user_id as id2, p.post_username, p2.post_username AS post_username2, p2.post_time 
  841.                 FROM " . TOPICS_TABLE . " t, " . FORUMS_TABLE . " f, " . USERS_TABLE . " u, " . POSTS_TABLE . " p, " . POSTS_TABLE . " p2, " . USERS_TABLE . " u2
  842.                 WHERE t.topic_id IN ($search_results) 
  843.                     AND t.topic_poster = u.user_id
  844.                     AND f.forum_id = t.forum_id 
  845.                     AND p.post_id = t.topic_first_post_id
  846.                     AND p2.post_id = t.topic_last_post_id
  847.                     AND u2.user_id = p2.poster_id";
  848.         }
  849.  
  850.         $per_page = ( $show_results == 'posts' ) ? $board_config['posts_per_page'] : $board_config['topics_per_page'];
  851.  
  852.         $sql .= " ORDER BY ";
  853.         switch ( $sort_by )
  854.         {
  855.             case 1:
  856.                 $sql .= ( $show_results == 'posts' ) ? 'pt.post_subject' : 't.topic_title';
  857.                 break;
  858.             case 2:
  859.                 $sql .= 't.topic_title';
  860.                 break;
  861.             case 3:
  862.                 $sql .= 'u.username';
  863.                 break;
  864.             case 4:
  865.                 $sql .= 'f.forum_id';
  866.                 break;
  867.             default:
  868.                 $sql .= ( $show_results == 'posts' ) ? 'p.post_time' : 'p2.post_time';
  869.                 break;
  870.         }
  871.         $sql .= " $sort_dir LIMIT $start, " . $per_page;
  872.  
  873.         if ( !$result = $db->sql_query($sql) )
  874.         {
  875.             message_die(GENERAL_ERROR, 'Could not obtain search results', '', __LINE__, __FILE__, $sql);
  876.         }
  877.  
  878.         $searchset = array();
  879.         while( $row = $db->sql_fetchrow($result) )
  880.         {
  881.             $searchset[] = $row;
  882.         }
  883.         
  884.         $db->sql_freeresult($result);        
  885.         
  886.         //
  887.         // Define censored word matches
  888.         //
  889.         $orig_word = array();
  890.         $replacement_word = array();
  891.         obtain_word_list($orig_word, $replacement_word);
  892.  
  893.         //
  894.         // Output header
  895.         //
  896.         $page_title = $lang['Search'];
  897.         include($phpbb_root_path . 'includes/page_header.'.$phpEx);    
  898.  
  899.         if ( $show_results == 'bookmarks' ) 
  900.         {
  901.             $template->set_filenames(array(
  902.                 'body' => 'search_results_bookmarks.tpl')
  903.             );
  904.         }
  905.         else if ( $show_results == 'posts' )
  906.         {
  907.             $template->set_filenames(array(
  908.                 'body' => 'search_results_posts.tpl')
  909.             );
  910.         }
  911.         else
  912.         {
  913.             $template->set_filenames(array(
  914.                 'body' => 'search_results_topics.tpl')
  915.             );
  916.         }
  917.         make_jumpbox('viewforum.'.$phpEx);
  918.  
  919.         if ( $show_results == 'bookmarks' )
  920.         {
  921.             $l_search_matches = ( $total_match_count == 1 ) ? sprintf($lang['Found_bookmark'], $total_match_count) : sprintf($lang['Found_bookmarks'], $total_match_count);
  922.             // Send variables for bookmarks
  923.             $template->assign_vars(array(
  924.                 'L_DELETE' => $lang['Delete'],
  925.                 
  926.                 'S_BM_ACTION' => append_sid("search.$phpEx?search_id=bookmarks&start=$start"),
  927.                 'S_HIDDEN_FIELDS' => '<input type="hidden" name="mode" value="removebm" />')
  928.             );
  929.         }
  930.         else
  931.         {
  932.             $l_search_matches = ( $total_match_count == 1 ) ? sprintf($lang['Found_search_match'], $total_match_count) : sprintf($lang['Found_search_matches'], $total_match_count);
  933.         }
  934.  
  935.         $template->assign_vars(array(
  936.             'L_SEARCH_MATCHES' => $l_search_matches, 
  937.             'L_TOPIC' => $lang['Topic'])
  938.         );
  939.  
  940.         $highlight_active = '';
  941.         $highlight_match = array();
  942.         for($j = 0; $j < count($split_search); $j++ )
  943.         {
  944.             $split_word = $split_search[$j];
  945.  
  946.             if ( $split_word != 'and' && $split_word != 'or' && $split_word != 'not' )
  947.             {
  948.                 $highlight_match[] = '#\b(' . str_replace("*", "([\w]+)?", $split_word) . ')\b#is';
  949.                 $highlight_active .= " " . $split_word;
  950.  
  951.                 for ($k = 0; $k < count($synonym_array); $k++)
  952.                 { 
  953.                     list($replace_synonym, $match_synonym) = split(' ', trim(strtolower($synonym_array[$k]))); 
  954.  
  955.                     if ( $replace_synonym == $split_word )
  956.                     {
  957.                         $highlight_match[] = '#\b(' . str_replace("*", "([\w]+)?", $replace_synonym) . ')\b#is';
  958.                         $highlight_active .= ' ' . $match_synonym;
  959.                     }
  960.                 } 
  961.             }
  962.         }
  963.  
  964.         $highlight_active = urlencode(trim($highlight_active));
  965.  
  966.         $tracking_topics = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) : array();
  967.         $tracking_forums = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) : array();
  968.  
  969.         for($i = 0; $i < count($searchset); $i++)
  970.         {
  971.             $forum_url = append_sid("viewforum.$phpEx?" . POST_FORUM_URL . '=' . $searchset[$i]['forum_id']);
  972.             $topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $searchset[$i]['topic_id'] . "&highlight=$highlight_active");
  973.             $post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $searchset[$i]['post_id'] . "&highlight=$highlight_active") . '#' . $searchset[$i]['post_id'];
  974.  
  975.             //-- mod : today at   yesterday at ------------------------------------------------------------------------ 
  976. //-- add 
  977.          $post_date = create_date_day($board_config['default_dateformat'], $searchset[$i]['post_time'], $board_config['board_timezone']); 
  978. //-- end mod : today at   yesterday at ------------------------------------------------------------------------ 
  979.  
  980.  
  981.             $message = $searchset[$i]['post_text'];
  982.             $topic_title = $searchset[$i]['topic_title'];
  983.  
  984.             $forum_id = $searchset[$i]['forum_id'];
  985.             $topic_id = $searchset[$i]['topic_id'];
  986.  
  987.             if ( $show_results == 'posts' )
  988.             {
  989.                 if ( isset($return_chars) )
  990.                 {
  991.                     $bbcode_uid = $searchset[$i]['bbcode_uid'];
  992.  
  993.                     //
  994.                     // If the board has HTML off but the post has HTML
  995.                     // on then we process it, else leave it alone
  996.                     //
  997.                     if ( $return_chars != -1 )
  998.                     {
  999.                         $message = strip_tags($message);
  1000.                         $message = preg_replace("/\[.*?:$bbcode_uid:?.*?\]/si", '', $message);
  1001.                         $message = preg_replace('/\[url\]|\[\/url\]/si', '', $message);
  1002.                         $message = ( strlen($message) > $return_chars ) ? substr($message, 0, $return_chars) . ' ...' : $message;
  1003.                     }
  1004.                     else
  1005.                     {
  1006.                         if ( !$board_config['allow_html'] )
  1007.                         {
  1008.                             if ( $postrow[$i]['enable_html'] )
  1009.                             {
  1010.                                 $message = preg_replace('#(<)([\/]?.*?)(>)#is', '<\\2>', $message);
  1011.                             }
  1012.                         }
  1013.  
  1014.                         if ( $bbcode_uid != '' )
  1015.                         {
  1016.                             $message = ( $board_config['allow_bbcode'] ) ? bbencode_second_pass($message, $bbcode_uid) : preg_replace('/\:[0-9a-z\:]+\]/si', ']', $message);
  1017.                         }
  1018.  
  1019.                         $message = make_clickable($message);
  1020.  
  1021.                         if ( $highlight_active )
  1022.                         {
  1023.                             if ( preg_match('/<.*>/', $message) )
  1024.                             {
  1025.                                 $message = preg_replace($highlight_match, '<!-- #sh -->\1<!-- #eh -->', $message);
  1026.  
  1027.                                 $end_html = 0;
  1028.                                 $start_html = 1;
  1029.                                 $temp_message = '';
  1030.                                 $message = ' ' . $message . ' ';
  1031.  
  1032.                                 while( $start_html = strpos($message, '<', $start_html) )
  1033.                                 {
  1034.                                     $grab_length = $start_html - $end_html - 1;
  1035.                                     $temp_message .= substr($message, $end_html + 1, $grab_length);
  1036.  
  1037.                                     if ( $end_html = strpos($message, '>', $start_html) )
  1038.                                     {
  1039.                                         $length = $end_html - $start_html + 1;
  1040.                                         $hold_string = substr($message, $start_html, $length);
  1041.  
  1042.                                         if ( strrpos(' ' . $hold_string, '<') != 1 )
  1043.                                         {
  1044.                                             $end_html = $start_html + 1;
  1045.                                             $end_counter = 1;
  1046.  
  1047.                                             while ( $end_counter && $end_html < strlen($message) )
  1048.                                             {
  1049.                                                 if ( substr($message, $end_html, 1) == '>' )
  1050.                                                 {
  1051.                                                     $end_counter--;
  1052.                                                 }
  1053.                                                 else if ( substr($message, $end_html, 1) == '<' )
  1054.                                                 {
  1055.                                                     $end_counter++;
  1056.                                                 }
  1057.  
  1058.                                                 $end_html++;
  1059.                                             }
  1060.  
  1061.                                             $length = $end_html - $start_html + 1;
  1062.                                             $hold_string = substr($message, $start_html, $length);
  1063.                                             $hold_string = str_replace('<!-- #sh -->', '', $hold_string);
  1064.                                             $hold_string = str_replace('<!-- #eh -->', '', $hold_string);
  1065.                                         }
  1066.                                         else if ( $hold_string == '<!-- #sh -->' )
  1067.                                         {
  1068.                                             $hold_string = str_replace('<!-- #sh -->', '<span style="color:#' . $theme['fontcolor3'] . '"><b>', $hold_string);
  1069.                                         }
  1070.                                         else if ( $hold_string == '<!-- #eh -->' )
  1071.                                         {
  1072.                                             $hold_string = str_replace('<!-- #eh -->', '</b></span>', $hold_string);
  1073.                                         }
  1074.  
  1075.                                         $temp_message .= $hold_string;
  1076.  
  1077.                                         $start_html += $length;
  1078.                                     }
  1079.                                     else
  1080.                                     {
  1081.                                         $start_html = strlen($message);
  1082.                                     }
  1083.                                 }
  1084.  
  1085.                                 $grab_length = strlen($message) - $end_html - 1;
  1086.                                 $temp_message .= substr($message, $end_html + 1, $grab_length);
  1087.  
  1088.                                 $message = trim($temp_message);
  1089.                             }
  1090.                             else
  1091.                             {
  1092.                                 $message = preg_replace($highlight_match, '<span style="color:#' . $theme['fontcolor3'] . '"><b>\1</b></span>', $message);
  1093.                             }
  1094.                         }
  1095.                     }
  1096.  
  1097.                     if ( count($orig_word) )
  1098.                     {
  1099.                         $topic_title = preg_replace($orig_word, $replacement_word, $topic_title);
  1100.                         $post_subject = ( $searchset[$i]['post_subject'] != "" ) ? preg_replace($orig_word, $replacement_word, $searchset[$i]['post_subject']) : $topic_title;
  1101.  
  1102.                         $message = preg_replace($orig_word, $replacement_word, $message);
  1103.                     }
  1104.                     else
  1105.                     {
  1106.                         $post_subject = ( $searchset[$i]['post_subject'] != '' ) ? $searchset[$i]['post_subject'] : $topic_title;
  1107.                     }
  1108.  
  1109.                     if ($board_config['allow_smilies'] && $searchset[$i]['enable_smilies'])
  1110.                     {
  1111.                         $message = smilies_pass($message);
  1112.                     }
  1113.  
  1114.                     $message = str_replace("\n", '<br />', $message);
  1115.  
  1116.                 }
  1117.  
  1118.                 $poster = ( $searchset[$i]['user_id'] != ANONYMOUS ) ? '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $searchset[$i]['user_id']) . '">' : '';
  1119.                 $poster .= ( $searchset[$i]['user_id'] != ANONYMOUS ) ? $searchset[$i]['username'] : ( ( $searchset[$i]['post_username'] != "" ) ? $searchset[$i]['post_username'] : $lang['Guest'] );
  1120.                 $poster .= ( $searchset[$i]['user_id'] != ANONYMOUS ) ? '</a>' : '';
  1121.  
  1122.                 if ( $userdata['session_logged_in'] && $searchset[$i]['post_time'] > $userdata['user_lastvisit'] )
  1123.                 {
  1124.                     if ( !empty($tracking_topics[$topic_id]) && !empty($tracking_forums[$forum_id]) )
  1125.                     {
  1126.                         $topic_last_read = ( $tracking_topics[$topic_id] > $tracking_forums[$forum_id] ) ? $tracking_topics[$topic_id] : $tracking_forums[$forum_id];
  1127.                     }
  1128.                     else if ( !empty($tracking_topics[$topic_id]) || !empty($tracking_forums[$forum_id]) )
  1129.                     {
  1130.                         $topic_last_read = ( !empty($tracking_topics[$topic_id]) ) ? $tracking_topics[$topic_id] : $tracking_forums[$forum_id];
  1131.                     }
  1132.  
  1133.                     if ( $searchset[$i]['post_time'] > $topic_last_read )
  1134.                     {
  1135.                         $mini_post_img = $images['icon_minipost_new'];
  1136.                         $mini_post_alt = $lang['New_post'];
  1137.                     }
  1138.                     else
  1139.                     {
  1140.                         $mini_post_img = $images['icon_minipost'];
  1141.                         $mini_post_alt = $lang['Post'];
  1142.                     }
  1143.                 }
  1144.                 else
  1145.                 {
  1146.                     $mini_post_img = $images['icon_minipost'];
  1147.                     $mini_post_alt = $lang['Post'];
  1148.                 }
  1149.                 //-- mod : calendar --------------------------------------------------------------------------------
  1150. //-- add
  1151.                 if (!empty($searchset[$i]['topic_calendar_time']) && ($searchset[$i]['post_id'] == $searchset[$i]['topic_first_post_id']))
  1152.                 {
  1153.                     $post_subject .= '</a></b>' . get_calendar_title($searchset[$i]['topic_calendar_time'], $searchset[$i]['topic_calendar_duration']);
  1154.                 }
  1155. //-- fin mod : calendar ----------------------------------------------------------------------------
  1156.                 $template->assign_block_vars("searchresults", array( 
  1157.                     'TOPIC_TITLE' => $topic_title,
  1158. //-- mod : categories hierarchy --------------------------------------------------------------------
  1159. //-- delete
  1160. //                    'FORUM_NAME' => $searchset[$i]['forum_name'],
  1161. //-- add
  1162.                     'FORUM_NAME' => get_object_lang(POST_FORUM_URL . $searchset[$i]['forum_id'], 'name'),
  1163. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  1164.  
  1165.                     'POST_SUBJECT' => $post_subject,
  1166.                     'POST_DATE' => $post_date,
  1167.                     'POSTER_NAME' => $poster,
  1168.                     'TOPIC_REPLIES' => $searchset[$i]['topic_replies'],
  1169.                     'TOPIC_VIEWS' => $searchset[$i]['topic_views'],
  1170.                     'MESSAGE' => $message,
  1171.                     'MINI_POST_IMG' => $mini_post_img, 
  1172.  
  1173.                     'L_MINI_POST_ALT' => $mini_post_alt, 
  1174.  
  1175.                     'U_POST' => $post_url,
  1176.                     'U_TOPIC' => $topic_url,
  1177.                     'U_FORUM' => $forum_url)
  1178.                 );
  1179.             }
  1180.             else
  1181.             {
  1182.                 $message = '';
  1183.  
  1184.                 if ( count($orig_word) )
  1185.                 {
  1186.                     $topic_title = preg_replace($orig_word, $replacement_word, $searchset[$i]['topic_title']);
  1187.                 }
  1188.  
  1189.                 $topic_type = $searchset[$i]['topic_type'];
  1190.  
  1191.                 if ($topic_type == POST_ANNOUNCE)
  1192.                 {
  1193.                     $topic_type = $lang['Topic_Announcement'] . ' ';
  1194.                 }
  1195.                 else if ($topic_type == POST_STICKY)
  1196.                 {
  1197.                     $topic_type = $lang['Topic_Sticky'] . ' ';
  1198.                 }
  1199.                 else
  1200.                 {
  1201.                     $topic_type = '';
  1202.                 }
  1203.  
  1204.                 if ( $searchset[$i]['topic_vote'] )
  1205.                 {
  1206.                     $topic_type .= $lang['Topic_Poll'] . ' ';
  1207.                 }
  1208.  
  1209.                 $views = $searchset[$i]['topic_views'];
  1210.                 $replies = $searchset[$i]['topic_replies'];
  1211.  
  1212.                 if ( ( $replies + 1 ) > $board_config['posts_per_page'] )
  1213.                 {
  1214.                     $total_pages = ceil( ( $replies + 1 ) / $board_config['posts_per_page'] );
  1215.                     $goto_page = ' [ <img src="' . $images['icon_gotopost'] . '" alt="' . $lang['Goto_page'] . '" title="' . $lang['Goto_page'] . '" />' . $lang['Goto_page'] . ': ';
  1216.  
  1217.                     $times = 1;
  1218.                     for($j = 0; $j < $replies + 1; $j += $board_config['posts_per_page'])
  1219.                     {
  1220.                         $goto_page .= '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=" . $topic_id . "&start=$j") . '">' . $times . '</a>';
  1221.                         if ( $times == 1 && $total_pages > 4 )
  1222.                         {
  1223.                             $goto_page .= ' ... ';
  1224.                             $times = $total_pages - 3;
  1225.                             $j += ( $total_pages - 4 ) * $board_config['posts_per_page'];
  1226.                         }
  1227.                         else if ( $times < $total_pages )
  1228.                         {
  1229.                             $goto_page .= ', ';
  1230.                         }
  1231.                         $times++;
  1232.                     }
  1233.                     $goto_page .= ' ] ';
  1234.                 }
  1235.                 else
  1236.                 {
  1237.                     $goto_page = '';
  1238.                 }
  1239.  
  1240.                 if ( $searchset[$i]['topic_status'] == TOPIC_MOVED )
  1241.                 {
  1242.                     $topic_type = $lang['Topic_Moved'] . ' ';
  1243.                     $topic_id = $searchset[$i]['topic_moved_id'];
  1244.  
  1245.                     $folder_image = '<img src="' . $images['folder'] . '" alt="' . $lang['No_new_posts'] . '" />';
  1246.                     $newest_post_img = '';
  1247.                 }
  1248.                 else
  1249.                 {
  1250.                     if ( $searchset[$i]['topic_status'] == TOPIC_LOCKED )
  1251.                     {
  1252.                         $folder = $images['folder_locked'];
  1253.                         $folder_new = $images['folder_locked_new'];
  1254.                     }
  1255.                     else if ( $searchset[$i]['topic_type'] == POST_ANNOUNCE )
  1256.                     {
  1257.                         $folder = $images['folder_announce'];
  1258.                         $folder_new = $images['folder_announce_new'];
  1259.                     }
  1260.                     else if ( $searchset[$i]['topic_type'] == POST_STICKY )
  1261.                     {
  1262.                         $folder = $images['folder_sticky'];
  1263.                         $folder_new = $images['folder_sticky_new'];
  1264.                     }
  1265.                     else
  1266.                     {
  1267.                         if ( $replies >= $board_config['hot_threshold'] )
  1268.                         {
  1269.                             $folder = $images['folder_hot'];
  1270.                             $folder_new = $images['folder_hot_new'];
  1271.                         }
  1272.                         else
  1273.                         {
  1274.                             $folder = $images['folder'];
  1275.                             $folder_new = $images['folder_new'];
  1276.                         }
  1277.                     }
  1278.  
  1279.                     if ( $userdata['session_logged_in'] )
  1280.                     {
  1281.                         if ( $searchset[$i]['post_time'] > $userdata['user_lastvisit'] ) 
  1282.                         {
  1283.                             if ( !empty($tracking_topics) || !empty($tracking_forums) || isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all']) )
  1284.                             {
  1285.  
  1286.                                 $unread_topics = true;
  1287.  
  1288.                                 if ( !empty($tracking_topics[$topic_id]) )
  1289.                                 {
  1290.                                     if ( $tracking_topics[$topic_id] > $searchset[$i]['post_time'] )
  1291.                                     {
  1292.                                         $unread_topics = false;
  1293.                                     }
  1294.                                 }
  1295.  
  1296.                                 if ( !empty($tracking_forums[$forum_id]) )
  1297.                                 {
  1298.                                     if ( $tracking_forums[$forum_id] > $searchset[$i]['post_time'] )
  1299.                                     {
  1300.                                         $unread_topics = false;
  1301.                                     }
  1302.                                 }
  1303.  
  1304.                                 if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all']) )
  1305.                                 {
  1306.                                     if ( $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all'] > $searchset[$i]['post_time'] )
  1307.                                     {
  1308.                                         $unread_topics = false;
  1309.                                     }
  1310.                                 }
  1311.  
  1312.                                 if ( $unread_topics )
  1313.                                 {
  1314.                                     $folder_image = $folder_new;
  1315.                                     $folder_alt = $lang['New_posts'];
  1316.  
  1317.                                     $newest_post_img = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&view=newest") . '"><img src="' . $images['icon_newest_reply'] . '" alt="' . $lang['View_newest_post'] . '" title="' . $lang['View_newest_post'] . '" border="0" /></a> ';
  1318.                                 }
  1319.                                 else
  1320.                                 {
  1321.                                     $folder_alt = ( $searchset[$i]['topic_status'] == TOPIC_LOCKED ) ? $lang['Topic_locked'] : $lang['No_new_posts'];
  1322.  
  1323.                                     $folder_image = $folder;
  1324.                                     $folder_alt = $folder_alt;
  1325.                                     $newest_post_img = '';
  1326.                                 }
  1327.  
  1328.                             }
  1329.                             else if ( $searchset[$i]['post_time'] > $userdata['user_lastvisit'] ) 
  1330.                             {
  1331.                                 $folder_image = $folder_new;
  1332.                                 $folder_alt = $lang['New_posts'];
  1333.  
  1334.                                 $newest_post_img = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id&view=newest") . '"><img src="' . $images['icon_newest_reply'] . '" alt="' . $lang['View_newest_post'] . '" title="' . $lang['View_newest_post'] . '" border="0" /></a> ';
  1335.                             }
  1336.                             else 
  1337.                             {
  1338.                                 $folder_image = $folder;
  1339.                                 $folder_alt = ( $searchset[$i]['topic_status'] == TOPIC_LOCKED ) ? $lang['Topic_locked'] : $lang['No_new_posts'];
  1340.                                 $newest_post_img = '';
  1341.                             }
  1342.                         }
  1343.                         else
  1344.                         {
  1345.                             $folder_image = $folder;
  1346.                             $folder_alt = ( $searchset[$i]['topic_status'] == TOPIC_LOCKED ) ? $lang['Topic_locked'] : $lang['No_new_posts'];
  1347.                             $newest_post_img = '';
  1348.                         }
  1349.                     }
  1350.                     else
  1351.                     {
  1352.                         $folder_image = $folder;
  1353.                         $folder_alt = ( $searchset[$i]['topic_status'] == TOPIC_LOCKED ) ? $lang['Topic_locked'] : $lang['No_new_posts'];
  1354.                         $newest_post_img = '';
  1355.                     }
  1356.                 }
  1357.  
  1358.  
  1359.                 if ( $searchset[$i]['user_id'] != ANONYMOUS )
  1360.                 {
  1361.                     $topic_author = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '='  . $searchset[$i]['user_id']) . '">'.color_group_colorize_name($searchset[$i]['user_id']).'</a>';
  1362.                 }
  1363.                 else
  1364.                 {
  1365.                     $sql = "SELECT p.post_username FROM " . TOPICS_TABLE . " t, " . POSTS_TABLE . " p
  1366.                         WHERE t.topic_first_post_id = p.post_id
  1367.                         AND t.topic_id = " . $searchset[$i]['topic_id'];
  1368.                     if ( !$result = $db->sql_query($sql) )
  1369.                     {
  1370.                         message_die(GENERAL_ERROR, 'Could not get topic autor name', '', __LINE__, __FILE__, $sql);
  1371.                     }
  1372.                     $row = $db->sql_fetchrow($result);
  1373.                     $topic_author_name = $row['post_username'];
  1374.                     $topic_author = ($topic_author_name != '' ) ? $topic_author_name : $lang['Guest'];
  1375.                 }
  1376.  
  1377.                 $first_post_time = create_date($board_config['default_dateformat'], $searchset[$i]['topic_time'], $board_config['board_timezone']);
  1378.  
  1379.                 //-- mod : today at   yesterday at ------------------------------------------------------------------------ 
  1380. //-- add 
  1381.             $last_post_time = create_date_day($board_config['default_dateformat'], $searchset[$i]['post_time'], $board_config['board_timezone']); 
  1382. //-- end mod : today at   yesterday at ------------------------------------------------------------------------
  1383.  
  1384.                 $last_post_author = ( $searchset[$i]['id2'] == ANONYMOUS ) ? ( ($searchset[$i]['post_username2'] != '' ) ? $searchset[$i]['post_username2'] . ' ' : $lang['Guest'] . ' ' ) : color_group_colorize_name($searchset[$i]['id2']);
  1385.  
  1386.                 $last_post_url = '<a href="' . append_sid("viewtopic.$phpEx?"  . POST_POST_URL . '=' . $searchset[$i]['topic_last_post_id']) . '#' . $searchset[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" border="0" /></a>';
  1387.  
  1388.                 $template->assign_block_vars('searchresults', array( 
  1389. //-- mod : categories hierarchy --------------------------------------------------------------------
  1390. //-- delete
  1391. //                    'FORUM_NAME' => $searchset[$i]['forum_name'],
  1392. //-- add
  1393.                     'FORUM_NAME' => get_object_lang(POST_FORUM_URL . $searchset[$i]['forum_id'], 'name'),
  1394. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  1395.  
  1396.                     'FORUM_ID' => $forum_id,
  1397.                     'TOPIC_ID' => $topic_id,
  1398.                     'FOLDER' => $folder_image,
  1399.                     'NEWEST_POST_IMG' => $newest_post_img, 
  1400.                     'TOPIC_FOLDER_IMG' => $folder_image, 
  1401.                     'GOTO_PAGE' => $goto_page,
  1402.                     'REPLIES' => $replies,
  1403.                     'TOPIC_TITLE' => $topic_title,
  1404.                     'TOPIC_TYPE' => $topic_type,
  1405.                     'VIEWS' => $views,
  1406.                     'TOPIC_AUTHOR' => $topic_author,
  1407.                     'FIRST_POST_TIME' => $first_post_time, 
  1408.                     'LAST_POST_TIME' => $last_post_time,
  1409.                     'LAST_POST_AUTHOR' => $last_post_author,
  1410.                     'LAST_POST_IMG' => $last_post_url,
  1411.  
  1412.                     'L_TOPIC_FOLDER_ALT' => $folder_alt, 
  1413.  
  1414.                     'U_VIEW_FORUM' => $forum_url, 
  1415.                     'U_VIEW_TOPIC' => $topic_url)
  1416.                 );
  1417.             }
  1418.         }
  1419.  
  1420.         $base_url = "search.$phpEx?search_id=$search_id";
  1421.  
  1422.         $template->assign_vars(array(
  1423.             'PAGINATION' => generate_pagination($base_url, $total_match_count, $per_page, $start),
  1424.             'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $per_page ) + 1 ), ceil( $total_match_count / $per_page )), 
  1425.  
  1426.             'L_AUTHOR' => $lang['Author'],
  1427.             'L_MESSAGE' => $lang['Message'],
  1428.             'L_FORUM' => $lang['Forum'],
  1429.             'L_TOPICS' => $lang['Topics'],
  1430.             'L_REPLIES' => $lang['Replies'],
  1431.             'L_VIEWS' => $lang['Views'],
  1432.             'L_POSTS' => $lang['Posts'],
  1433.             'L_LASTPOST' => $lang['Last_Post'], 
  1434.             'L_SELECT' => $lang['Select'],
  1435.             'L_POSTED' => $lang['Posted'], 
  1436.             'L_SUBJECT' => $lang['Subject'],
  1437.  
  1438.             'L_GOTO_PAGE' => $lang['Goto_page'])
  1439.         );
  1440.  
  1441.         $template->pparse('body');
  1442.  
  1443.         include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
  1444.     }
  1445.     else
  1446.     {
  1447.         if ( $show_results == 'bookmarks' )
  1448.         {
  1449.             message_die(GENERAL_MESSAGE, $lang['No_Bookmarks']);
  1450.         }
  1451.         else
  1452.         {
  1453.             message_die(GENERAL_MESSAGE, $lang['No_search_match']);
  1454.         }
  1455.     }
  1456. }
  1457.  
  1458. //
  1459. // Search forum
  1460. //
  1461. //-- mod : categories hierarchy --------------------------------------------------------------------
  1462. //-- delete
  1463. // $sql = "SELECT c.cat_title, c.cat_id, f.forum_name, f.forum_id  
  1464. //    FROM " . CATEGORIES_TABLE . " c, " . FORUMS_TABLE . " f
  1465. //    WHERE f.cat_id = c.cat_id 
  1466. //    ORDER BY c.cat_id, f.forum_order";
  1467. // $result = $db->sql_query($sql);
  1468. // if ( !$result )
  1469. // {
  1470. //    message_die(GENERAL_ERROR, 'Could not obtain forum_name/forum_id', '', __LINE__, __FILE__, $sql);
  1471. // }
  1472. //
  1473. // $is_auth_ary = auth(AUTH_READ, AUTH_LIST_ALL, $userdata);
  1474. //
  1475. // $s_forums = '';
  1476. // while( $row = $db->sql_fetchrow($result) )
  1477. // {
  1478. //    if ( $is_auth_ary[$row['forum_id']]['auth_read'] )
  1479. //    {
  1480. //        $s_forums .= '<option value="' . $row['forum_id'] . '">' . $row['forum_name'] . '</option>';
  1481. //        if ( empty($list_cat[$row['cat_id']]) )
  1482. //        {
  1483. //            $list_cat[$row['cat_id']] = $row['cat_title'];
  1484. //        }
  1485. //    }
  1486. // }
  1487. //
  1488. // if ( $s_forums != '' )
  1489. // {
  1490. //    $s_forums = '<option value="-1">' . $lang['All_available'] . '</option>' . $s_forums;
  1491. //
  1492. //    //
  1493. //    // Category to search
  1494. //    //
  1495. //    $s_categories = '<option value="-1">' . $lang['All_available'] . '</option>';
  1496. //    while( list($cat_id, $cat_title) = @each($list_cat))
  1497. //    {
  1498. //        $s_categories .= '<option value="' . $cat_id . '">' . $cat_title . '</option>';
  1499. //    }
  1500. // }
  1501. // else
  1502. // {
  1503. //    message_die(GENERAL_MESSAGE, $lang['No_searchable_forums']);
  1504. // }
  1505. //-- add
  1506. $s_forums = get_tree_option();
  1507. //-- fin mod : categories hierarchy ----------------------------------------------------------------
  1508.  
  1509.  
  1510. //
  1511. // Number of chars returned
  1512. //
  1513. $s_characters = '<option value="-1">' . $lang['All_available'] . '</option>';
  1514. $s_characters .= '<option value="0">0</option>';
  1515. $s_characters .= '<option value="25">25</option>';
  1516. $s_characters .= '<option value="50">50</option>';
  1517.  
  1518. for($i = 100; $i < 1100 ; $i += 100)
  1519. {
  1520.     $selected = ( $i == 200 ) ? ' selected="selected"' : '';
  1521.     $s_characters .= '<option value="' . $i . '"' . $selected . '>' . $i . '</option>';
  1522. }
  1523.  
  1524. //
  1525. // Sorting
  1526. //
  1527. $s_sort_by = "";
  1528. for($i = 0; $i < count($sort_by_types); $i++)
  1529. {
  1530.     $s_sort_by .= '<option value="' . $i . '">' . $sort_by_types[$i] . '</option>';
  1531. }
  1532.  
  1533. //
  1534. // Search time
  1535. //
  1536. $previous_days = array(0, 1, 7, 14, 30, 90, 180, 364);
  1537. $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']);
  1538.  
  1539. $s_time = '';
  1540. for($i = 0; $i < count($previous_days); $i++)
  1541. {
  1542.     $selected = ( $topic_days == $previous_days[$i] ) ? ' selected="selected"' : '';
  1543.     $s_time .= '<option value="' . $previous_days[$i] . '"' . $selected . '>' . $previous_days_text[$i] . '</option>';
  1544. }
  1545. $l_only_bluecards = ($userdata['user_level']>=ADMIN) ? '</br><input type="checkbox" name="only_bluecards" > '.$lang['Search_only_bluecards'] :'';
  1546. //
  1547. // Output the basic page
  1548. //
  1549. $page_title = $lang['Search'];
  1550. include($phpbb_root_path . 'includes/page_header.'.$phpEx);
  1551.  
  1552. $template->set_filenames(array(
  1553.     'body' => 'search_body.tpl')
  1554. );
  1555. make_jumpbox('viewforum.'.$phpEx);
  1556.  
  1557. $template->assign_vars(array(
  1558.     'L_SEARCH_QUERY' => $lang['Search_query'], 
  1559.     'L_SEARCH_OPTIONS' => $lang['Search_options'], 
  1560.     'L_SEARCH_KEYWORDS' => $lang['Search_keywords'], 
  1561.     'L_SEARCH_KEYWORDS_EXPLAIN' => $lang['Search_keywords_explain'], 
  1562.     'L_SEARCH_AUTHOR' => $lang['Search_author'],
  1563.     'L_SEARCH_AUTHOR_EXPLAIN' => $lang['Search_author_explain'], 
  1564.     'L_SEARCH_ANY_TERMS' => $lang['Search_for_any'],
  1565.     'L_SEARCH_ALL_TERMS' => $lang['Search_for_all'], 
  1566.     'L_SEARCH_MESSAGE_ONLY' => $lang['Search_msg_only'], 
  1567.     'L_SEARCH_MESSAGE_TITLE' => $lang['Search_title_msg'], 
  1568.     'L_CATEGORY' => $lang['Category'], 
  1569.     'L_RETURN_FIRST' => $lang['Return_first'],
  1570.     'L_CHARACTERS' => $lang['characters_posts'], 
  1571.     'L_SORT_BY' => $lang['Sort_by'],
  1572.     'L_SORT_ASCENDING' => $lang['Sort_Ascending'],
  1573.     'L_SORT_DESCENDING' => $lang['Sort_Descending'],
  1574.     'L_SEARCH_PREVIOUS' => $lang['Search_previous'], 
  1575.     'L_DISPLAY_RESULTS' => $lang['Display_results'], 
  1576.     'L_FORUM' => $lang['Forum'],
  1577.     'L_TOPICS' => $lang['Topics'],
  1578.     'L_POSTS' => $lang['Posts'],
  1579.     'L_ONLY_BLUECARDS' => $l_only_bluecards,
  1580.     'S_SEARCH_ACTION' => append_sid("search.$phpEx?mode=results"),
  1581.     'S_CHARACTER_OPTIONS' => $s_characters,
  1582.     'S_FORUM_OPTIONS' => $s_forums, 
  1583.     'S_CATEGORY_OPTIONS' => $s_categories, 
  1584.     'S_TIME_OPTIONS' => $s_time, 
  1585.     'S_SORT_OPTIONS' => $s_sort_by,
  1586.     'S_HIDDEN_FIELDS' => '')
  1587. );
  1588.  
  1589. $template->pparse('body');
  1590.  
  1591. include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
  1592.  
  1593. ?>