File: /var/www/ilya/data/www/kamforum.ru/sources/lib/search_mysql_ftext.php
<?php
/*
+--------------------------------------------------------------------------
| Invision Power Board v2.1.5
| =============================================
| by Matthew Mecham
| (c) 2001 - 2004 Invision Power Services, Inc.
| http://www.invisionpower.com
| =============================================
| Web: http://www.invisionboard.com
| Time: Sun, 09 Oct 2005 11:51:26 GMT
| Release: 1a47e28f0443faa9f14d0c0a45151e54
| Licence Info: http://www.invisionboard.com/?license
+---------------------------------------------------------------------------
|
| > MySQL FULL TEXT Search Library
| > Module written by Matt Mecham
| > Date started: 31st March 2003
|
| > Module Version Number: 1.0.0
+--------------------------------------------------------------------------
*/
class search_lib extends Search
{
var $parser = "";
var $is = "";
var $resultlimit = "";
//-----------------------------------------
// Constructor
//-----------------------------------------
function search_lib(&$that)
{
$this->is = &$that; // hahaha!
$this->resultlimit = $this->is->resultlimit;
}
//-----------------------------------------
// Simple search
//-----------------------------------------
function do_simple_search()
{
if ( ! $this->ipsclass->input['sid'] )
{
$boolean = "";
$topics_name = "";
//-----------------------------------------
// NEW SEARCH.. Check Keywords..
//-----------------------------------------
if ( $this->is->mysql_version >= 40010 )
{
$boolean = 'IN BOOLEAN MODE';
$keywords = $this->is->filter_ftext_keywords($this->ipsclass->input['keywords']);
}
else
{
$keywords = $this->is->filter_keywords($this->ipsclass->input['keywords']);
}
$check_keywords = trim($keywords);
if ( (! $check_keywords) or ($check_keywords == "") or (! isset($check_keywords) ) )
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'no_search_words') );
}
if (strlen(trim($keywords)) < $this->ipsclass->vars['min_search_word'])
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'search_word_short', 'EXTRA' => 4) );
}
//-----------------------------------------
// Check for filter abuse..
//-----------------------------------------
$tmp = explode( ' ', $keywords );
foreach( $tmp as $t )
{
if ( ! $t )
{
continue;
}
$t = preg_replace( "#[\+\-\*\.]#", "", $t );
//-----------------------------------------
// Allow abc* but not a***
//-----------------------------------------
if ( strlen( $t ) < $this->ipsclass->vars['min_search_word'] )
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'search_word_short', 'EXTRA' => $this->ipsclass->vars['min_search_word']) );
}
}
//print $check_keywords; exit();
//-----------------------------------------
// Get forums...
//-----------------------------------------
$myforums = $this->is->get_searchable_forums();
if ($myforums == "")
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'no_search_forum') );
}
//-----------------------------------------
// Only allowed to see their own topics?
//-----------------------------------------
if ( ! $this->ipsclass->member['g_other_topics'] )
{
$topics_name = " AND t.starter_id=".$this->ipsclass->member['id'];
}
//-----------------------------------------
// Allowed to see queueueueueuueueueued?
//-----------------------------------------
if ( ! $this->ipsclass->member['g_is_supmod'] )
{
$approved = 'and p.queued=0 and t.approved=1';
}
else
{
$approved = 'and p.queued IN (0,1)';
}
//-----------------------------------------
// How many results?
//-----------------------------------------
$this->ipsclass->DB->query("SELECT COUNT(*) as dracula
FROM ".SQL_PREFIX."posts p
LEFT JOIN ".SQL_PREFIX."topics t ON (t.tid=p.topic_id)
WHERE t.forum_id IN ($myforums) {$topics_name} {$approved}
AND MATCH(p.post) AGAINST ('$check_keywords' $boolean)");
$count = $this->ipsclass->DB->fetch_row();
if ( $count['dracula'] < 1 ) // Tee-hee!
{
$this->output .= $this->ipsclass->compiled_templates['skin_search']->search_error_page($this->ipsclass->input['keywords']);
$this->ipsclass->print->add_output( $this->output );
$this->ipsclass->print->do_output( array( 'TITLE' => $this->ipsclass->lang['g_simple_title'], 'JS' => 0, NAV => array( $this->ipsclass->lang['g_simple_title'] ) ) );
}
//-----------------------------------------
// Store it daddy-o!
//-----------------------------------------
$cache = "SELECT MATCH(post) AGAINST ('$check_keywords' $boolean) as score, t.tid, t.posts as topic_posts, t.title as topic_title, t.views, t.forum_id,
p.post, p.author_id, p.author_name, p.post_date, p.pid, p.post_htmlstate,m.*, me.*
FROM ".SQL_PREFIX."posts p
LEFT JOIN ".SQL_PREFIX."topics t on (p.topic_id=t.tid)
LEFT JOIN ".SQL_PREFIX."members m on (m.id=p.author_id)
LEFT JOIN ".SQL_PREFIX."member_extra me on (me.id=p.author_id)
WHERE t.forum_id IN ($myforums) AND t.title IS NOT NULL {$topics_name} {$approved}
AND MATCH(post) AGAINST ('$check_keywords' $boolean)";
if ( $this->ipsclass->input['sortby'] != "relevant" )
{
$cache .= " ORDER BY p.post_date DESC";
}
$unique_id = md5(uniqid(microtime(),1));
$str = $this->ipsclass->DB->compile_db_insert_string( array (
'id' => $unique_id,
'search_date'=> time(),
'topic_id' => '00',
'topic_max' => $count['dracula'],
'member_id' => $this->ipsclass->member['id'],
'ip_address' => $this->ipsclass->input['IP_ADDRESS'],
'post_id' => '00',
'query_cache'=> $cache,
) );
$this->ipsclass->DB->query("INSERT INTO ibf_search_results ({$str['FIELD_NAMES']}) VALUES ({$str['FIELD_VALUES']})");
$hilight = str_replace( '"', '', $this->ipsclass->input['keywords'] );
$hilight = urlencode(trim(str_replace( '&', '&', $hilight)));
$this->ipsclass->print->redirect_screen( $this->ipsclass->lang['search_redirect'] , "act=Search&CODE=simpleresults&sid=$unique_id&highlite=".$hilight );
}
else
{
//-----------------------------------------
// Load up the topic stuff
//-----------------------------------------
require_once( ROOT_PATH.'sources/action_public/topics.php' );
$this->topics = new topics();
$this->topics->ipsclass =& $this->ipsclass;
$this->topics->topic_init();
//-----------------------------------------
// Get SQL schtuff
//-----------------------------------------
$this->unique_id = $this->ipsclass->input['sid'];
if ($this->unique_id == "")
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'no_search_results' ) );
}
$this->ipsclass->DB->query("SELECT * FROM ibf_search_results WHERE id='{$this->unique_id}'");
if ( ! $sr = $this->ipsclass->DB->fetch_row() )
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'no_search_results' ) );
}
$query = stripslashes($sr['query_cache']);
$check_keywords = preg_replace( '/&(lt|gt|quot);/', "&\\1;", trim(urldecode($this->ipsclass->input['highlite'])) );
//-----------------------------------------
// Display
//-----------------------------------------
$this->links = $this->ipsclass->build_pagelinks(
array(
'TOTAL_POSS' => $sr['topic_max'],
'leave_out' => 10,
'PER_PAGE' => 25,
'CUR_ST_VAL' => $this->is->first,
'L_SINGLE' => $this->ipsclass->lang['sp_single'],
'L_MULTI' => "",
'BASE_URL' => $this->ipsclass->base_url."&act=Search&CODE=simpleresults&sid=".$this->unique_id."&highlite=".urlencode(str_replace('"', '', $check_keywords)),
)
);
//-----------------------------------------
// oh look, a query!
//-----------------------------------------
$last_tid = 0;
$SQLtime = new Debug();
$SQLtime->startTimer();
$outer = $this->ipsclass->DB->query($query." LIMIT {$this->is->first},25");
$ex_time = sprintf( "%.4f",$SQLtime->endTimer() );
$show_end = 25;
if ( $sr['topic_max'] < 25 )
{
$show_end = $sr['topic_max'];
}
$this->output .= $this->ipsclass->compiled_templates['skin_search']->result_simple_header(array(
'links' => $this->links,
'start' => $this->is->first,
'end' => $show_end + $this->is->first,
'matches' => $sr['topic_max'],
'ex_time' => $ex_time,
'keyword' => $check_keywords,
) );
$attach_pids = array();
while ( $row = $this->ipsclass->DB->fetch_row($outer) )
{
//-----------------------------------------
// Listen up, this is relevant.
// MySQL's relevance is a bit of a mystery. It's
// based on many hazy variables such as placing, occurance
// and such. The result is a floating point number, like 1.239848556
// No one can really disect what this means in human terms, so I'm
// going to simply assume that anything over 1.0 is 100%, and *100 any
// other relevance result.
//-----------------------------------------
$member = $this->topics->parse_member( $row );
$row['relevance'] = sprintf( "%3d", ( $row['score'] > 1.0 ) ? 100 : $row['score'] * 100 );
$row['post_date'] = $this->ipsclass->get_date( $row['post_date'], 'LONG' );
// Link member's name
if ($row['author_id'])
{
$row['author_name'] = "<a href='{$this->ipsclass->base_url}act=Profile&MID={$row['author_id']}'>{$row['author_name']}</a>";
}
//-----------------------------------------
// Attachments?
//-----------------------------------------
if ( strstr( $row['post'], '[attachmentid=' ) )
{
$attach_pids[] = $row['pid'];
}
//-----------------------------------------
// Fix up quotes..
//-----------------------------------------
$this->topics->parser->parse_html = ( $this->ipsclass->forums->forum_by_id[$row['forum_id']]['use_html'] and $this->ipsclass->cache['group_cache'][ $row['mgroup'] ]['g_dohtml'] and $row['post_htmlstate'] ) ? 1 : 0;
$this->topics->parser->parse_wordwrap = $this->ipsclass->vars['post_wordwrap'];
$this->topics->parser->parse_nl2br = $row['post_htmlstate'] == 2 ? 1 : 0;
$row['post'] = $this->topics->parser->pre_db_parse( $this->topics->parser->pre_edit_parse( $row['post'] ) );
$row['post'] = $this->topics->parser->pre_display_parse( $row['post'] );
$keywords_array = explode( " ", str_replace( "+", " ", $this->ipsclass->input['highlite'] ) );
if ( count($keywords_array) )
{
foreach( $keywords_array as $keys )
{
if ( $keys == "" )
{
continue;
}
while( preg_match( "/(^|\s|'|\"|>)(".preg_quote($keys, '/').")(\s|'|\"|,|\.|!|<br|$)/is", $row['post'] ) )
{
$row['post'] = preg_replace( "/(^|\s|'|\"|>)(".preg_quote($keys, '/').")(\s|'|\"|,|\.|!|<br|$)/is", "\\1<span class='searchlite'>\\2</span>\\3", $row['post'] );
}
}
}
$row['forum_name'] = $this->ipsclass->forums->forum_by_id[ $row['forum_id'] ]['name'];
$this->output .= $this->ipsclass->compiled_templates['skin_search']->RenderPostRow($row, $member);
}
//-----------------------------------------
// Add in attachments?
//-----------------------------------------
if ( count( $attach_pids ) )
{
$this->output = $this->topics->parse_attachments( $this->output, $attach_pids );
}
$this->output .= $this->ipsclass->compiled_templates['skin_search']->end_results_table(array( 'SHOW_PAGES' => $this->links ) , 1 );
$this->ipsclass->print->add_output("$this->output");
$this->ipsclass->print->do_output( array( 'TITLE' => $this->ipsclass->lang['g_simple_title'], 'JS' => 0, NAV => array( $this->ipsclass->lang['g_simple_title'] ) ) );
}
}
//-----------------------------------------
// Main Board Search-e-me-doo-daa
//-----------------------------------------
function do_main_search()
{
//-----------------------------------------
// Invisible topic-approval permissions?
//-----------------------------------------
$my_invisible_forums_t = array();
$my_invisible_forums_p = array();
if( is_array($this->ipsclass->cache['moderators']) AND count($this->ipsclass->cache['moderators']) )
{
foreach( $this->ipsclass->cache['moderators'] as $k => $v )
{
if( $v['member_id'] == $this->ipsclass->member['id'] AND $v['post_q'] )
{
$my_invisible_forums_p[] = $v['forum_id'];
}
if( $v['member_id'] == $this->ipsclass->member['id'] AND $v['topic_q'] )
{
$my_invisible_forums_t[] = $v['forum_id'];
}
if( $v['is_group'] && ( $v['group_id'] == $this->ipsclass->member['mgroup']
OR in_array( $v['group_id'], explode( ",", $this->ipsclass->clean_perm_string( $this->ipsclass->member['mgroup_others'] ) ) ) ) && $v['post_q'] )
{
$my_invisible_forums_p[] = $v['forum_id'];
}
if( $v['is_group'] && ( $v['group_id'] == $this->ipsclass->member['mgroup']
OR in_array( $v['group_id'], explode( ",", $this->ipsclass->clean_perm_string( $this->ipsclass->member['mgroup_others'] ) ) ) ) && $v['topic_q'] )
{
$my_invisible_forums_t[] = $v['forum_id'];
}
}
}
//-----------------------------------------
// Do we have any input?
//-----------------------------------------
//-----------------------------------------
// USING FULL TEXT - Wooohoo!!
//-----------------------------------------
if ($this->ipsclass->input['namesearch'] != "")
{
$name_filter = $this->is->filter_keywords($this->ipsclass->input['namesearch'], 1);
}
if ($this->ipsclass->input['useridsearch'] != "")
{
$keywords = $this->is->filter_keywords($this->ipsclass->input['useridsearch']);
$this->is->search_type = 'userid';
}
else
{
$keywords = $this->is->filter_keywords($this->ipsclass->input['keywords']);
$this->is->search_type = 'posts';
}
if ( $name_filter != "" AND $this->ipsclass->input['keywords'] != "" )
{
$type = 'joined';
}
else if ( $name_filter == "" AND $this->ipsclass->input['keywords'] != "" )
{
$type= 'postonly';
}
else if ( $name_filter != "" AND $this->ipsclass->input['keywords'] == "" )
{
$type='nameonly';
}
//-----------------------------------------
if ( $this->is->mysql_version >= 40010 )
{
$boolean = 'IN BOOLEAN MODE';
$keywords = $this->is->filter_ftext_keywords($this->ipsclass->input['keywords']);
}
else
{
$keywords = $this->is->filter_keywords($this->ipsclass->input['keywords']);
}
$check_keywords = trim($keywords);
if ( (! $check_keywords) or ($check_keywords == "") or (! isset($check_keywords) ) )
{
if ($this->ipsclass->input['namesearch'] == "")
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'no_search_words') );
}
}
else
{
if ( strlen(trim($keywords)) < $this->ipsclass->vars['min_search_word'] and $type != 'nameonly' )
{
if ( $this->is->xml_out )
{
print sprintf( $this->ipsclass->lang['xml_char'], $this->ipsclass->vars['min_search_word'] );
exit();
}
else
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'search_word_short', 'EXTRA' => $this->ipsclass->vars['min_search_word']) );
}
}
}
//-----------------------------------------
// Check for filter abuse..
//-----------------------------------------
$tmp = explode( ' ', $keywords );
foreach( $tmp as $t )
{
if ( ! $t )
{
continue;
}
$t = preg_replace( "#[\+\-\*\.]#", "", $t );
//-----------------------------------------
// Allow abc* but not a***
//-----------------------------------------
if ( ( strlen( $t ) < $this->ipsclass->vars['min_search_word'] ) and $type != 'nameonly' )
{
if ( $this->is->xml_out )
{
print sprintf( $this->ipsclass->lang['xml_char'], $this->ipsclass->vars['min_search_word'] );
exit();
}
else
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'search_word_short', 'EXTRA' => $this->ipsclass->vars['min_search_word']) );
}
}
}
//-----------------------------------------
if ($this->ipsclass->input['search_in'] == 'titles')
{
$this->is->search_in = 'titles';
}
//-----------------------------------------
$forums = $this->is->get_searchable_forums();
//-----------------------------------------
// Do we have any forums to search in?
//-----------------------------------------
if ($forums == "")
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'no_search_forum') );
}
//-----------------------------------------
foreach( array( 'last_post', 'posts', 'starter_name', 'forum_id' ) as $v )
{
if ( $this->ipsclass->input['sort_key'] == $v )
{
$this->is->sort_key = $v;
}
}
//-----------------------------------------
foreach ( array( 1, 7, 30, 60, 90, 180, 365, 0 ) as $v )
{
if ($this->ipsclass->input['prune'] == $v)
{
$this->is->prune = $v;
}
}
//-----------------------------------------
if ($this->ipsclass->input['sort_order'] == 'asc')
{
$this->is->sort_order = 'asc';
}
//-----------------------------------------
if ($this->ipsclass->input['result_type'] == 'posts')
{
$this->is->result_type = 'posts';
}
if ( $this->ipsclass->vars['min_search_word'] < 1 )
{
$this->ipsclass->vars['min_search_word'] = 4;
}
//-----------------------------------------
// Add on the prune days
//-----------------------------------------
if ($this->is->prune > 0)
{
$gt_lt = $this->ipsclass->input['prune_type'] == 'older' ? "<" : ">";
$time = time() - ($this->ipsclass->input['prune'] * 86400);
if ( $this->is->result_type == 'posts' )
{
$topics_datecut = "t.start_date $gt_lt $time AND";
}
else
{
$topics_datecut = "t.last_post $gt_lt $time AND";
}
$posts_datecut = "p.post_date $gt_lt $time AND";
}
//-----------------------------------------
// Only allowed to see their own topics?
//-----------------------------------------
if ( ! $this->ipsclass->member['g_other_topics'] )
{
$name_filter = "";
$posts_name = " AND t.starter_id=".$this->ipsclass->member['id'];
$topics_name = " AND t.starter_id=".$this->ipsclass->member['id'];
}
//-----------------------------------------
// Is this a membername search?
//-----------------------------------------
$name_filter = trim( $name_filter );
$member_string = "";
if ( $name_filter != "" )
{
//-----------------------------------------
// Get all the possible matches for the supplied name from the DB
//-----------------------------------------
$name_filter = str_replace( '|', "|", $name_filter );
if ($this->ipsclass->input['exactname'] == 1)
{
$sql_query = "SELECT id from ibf_members WHERE LOWER(members_display_name)='".$name_filter."'";
}
else
{
$sql_query = "SELECT id from ibf_members WHERE members_display_name like '%".$name_filter."%'";
}
$this->ipsclass->DB->query( $sql_query );
while ($row = $this->ipsclass->DB->fetch_row())
{
$member_string .= "'".$row['id']."',";
}
$member_string = preg_replace( "/,$/", "", $member_string );
// Error out of we matched no members
if ($member_string == "")
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'no_name_search_results') );
}
$posts_name = " AND p.author_id IN ($member_string)";
$topics_name = " AND t.starter_id IN ($member_string)";
}
if ( $type != 'nameonly' )
{
if (strlen(trim($keywords)) < $this->ipsclass->vars['min_search_word'])
{
$this->ipsclass->Error( array( 'LEVEL' => 1, 'MSG' => 'search_word_short', 'EXTRA' => $this->ipsclass->vars['min_search_word']) );
}
}
$unique_id = md5(uniqid(microtime(),1));
if ($type != 'nameonly')
{
if ( ! $this->is->topic_search_only )
{
$topics_query = "SELECT t.tid, t.approved, t.forum_id
FROM ibf_topics t
WHERE $topics_datecut t.forum_id IN ($forums)
$topics_name AND t.approved=1 AND MATCH(title) AGAINST ('".trim($keywords)."' $boolean)";
$posts_query = "SELECT p.pid, p.queued, t.approved, t.forum_id
FROM ibf_posts p
LEFT JOIN ibf_topics t ON ( p.topic_id=t.tid )
WHERE $posts_datecut t.forum_id IN ($forums)
AND p.queued=0
$posts_name AND MATCH(post) AGAINST ('".trim($keywords)."' $boolean)";
}
else
{
//-----------------------------------------
// Search in topic only
//-----------------------------------------
$posts_query = "SELECT p.pid, p.queued, t.approved, t.forum_id
FROM ibf_posts p
LEFT JOIN ibf_topics t ON ( p.topic_id=t.tid )
WHERE
p.topic_id={$this->is->topic_id}
AND $posts_datecut t.forum_id IN ($forums)
AND p.queued=0
$posts_name AND MATCH(post) AGAINST ('".trim($keywords)."' $boolean)";
}
}
else
{
$topics_query = "SELECT t.tid, t.approved, t.forum_id
FROM ibf_topics t
WHERE $topics_datecut t.forum_id IN ($forums)
$topics_name AND t.approved=1";
$posts_query = "SELECT p.pid, p.queued, t.approved, t.forum_id
FROM ibf_posts p
LEFT JOIN ibf_topics t ON ( p.topic_id=t.tid )
WHERE $posts_datecut t.forum_id IN ($forums)
AND p.queued=0
$posts_name";
}
//print $topics_query."<br />".$posts_query; exit();
//-----------------------------------------
// Get the topic ID's to serialize and store into
// the database
//-----------------------------------------
$topics = "";
$posts = "";
$topic_array = array();
$topic_tmp = array();
$post_array = array();
$post_tmp = array();
$t_cnt = 0;
$p_cnt = 0;
$more = "";
//-----------------------------------------
// TID: Get 'em
//-----------------------------------------
if ( ! $this->is->topic_search_only )
{
$this->ipsclass->DB->query($topics_query);
while ($row = $this->ipsclass->DB->fetch_row() )
{
if( !$row['approved'] )
{
if( !$this->ipsclass->member['g_is_supmod'] )
{
if( !in_array( $row['forum_id'], $my_invisible_forums_t ) )
{
continue;
}
}
}
$topic_tmp[ $row['tid'] ] = $row['tid'];
}
$this->ipsclass->DB->free_result();
}
//-----------------------------------------
// TID Sort 'em
//-----------------------------------------
krsort( $topic_tmp );
foreach( $topic_tmp as $id => $tid )
{
$t_cnt++;
if ( $t_cnt > $this->resultlimit )
{
$more = 1;
break;
}
$topic_array[ $tid ] = $tid;
}
//-----------------------------------------
// PID: Get 'em
//-----------------------------------------
$this->ipsclass->DB->query($posts_query);
while ($row = $this->ipsclass->DB->fetch_row() )
{
if( $row['queued'] )
{
if( !$this->ipsclass->member['g_is_supmod'] )
{
if( !in_array( $row['forum_id'], $my_invisible_forums_p ) )
{
continue;
}
}
}
if( !$row['approved'] )
{
if( !$this->ipsclass->member['g_is_supmod'] )
{
if( !in_array( $row['forum_id'], $my_invisible_forums_t ) )
{
continue;
}
}
}
$post_tmp[ $row['pid'] ] = $row['pid'];
}
$this->ipsclass->DB->free_result();
//-----------------------------------------
// PID Sort 'em
//-----------------------------------------
krsort( $post_tmp );
foreach( $post_tmp as $id => $pid )
{
$p_cnt++;
if ( $p_cnt > $this->resultlimit )
{
$more = 1;
break;
}
$post_array[ $pid ] = $pid;
}
//-----------------------------------------
$topics = implode( ",", $topic_array );
$posts = implode( ",", $post_array );
//-----------------------------------------
// Do we have any results?
//-----------------------------------------
if ($topics == "" and $posts == "")
{
if ( $this->is->xml_out )
{
print sprintf( $this->ipsclass->lang['xml_nomatches'], str_replace( '"', "", $keywords ) );
exit();
}
else
{
$this->output .= $this->ipsclass->compiled_templates['skin_search']->search_error_page($this->ipsclass->input['keywords']);
$this->ipsclass->print->add_output( $this->output );
$this->ipsclass->print->do_output( array( 'TITLE' => $this->ipsclass->lang['g_simple_title'], 'JS' => 0, NAV => array( $this->ipsclass->lang['g_simple_title'] ) ) );
}
}
//-----------------------------------------
// If we are still here, return data like a good
// boy (or girl). Yes Reg; or girl.
// What have the Romans ever done for us?
//-----------------------------------------
return array(
'topic_id' => $topics,
'post_id' => $posts,
'topic_max' => intval( count( $topic_array ) ),
'post_max' => intval( count( $post_array ) ),
'keywords' => str_replace( '"', "", $keywords ),
'query_cache' => $more,
);
}
}
?>