View Single Post
  #5 (permalink)  
Old 02-15-2006, 12:43 AM
howitzer howitzer is offline
New Pligger
 
Join Date: Feb 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
i try to use the code from meneame japanese version, and it works for me.

http://www.rauru-block.org/mediawiki/index.php/Meneame

in libs/utils.php, function get_search_clause
Code:
$where = " AND MATCH (link_url, link_url_title, link_title, link_content, link_tags) AGAINST ('$words' $mode) ";
change this line to

Code:
		$where = " AND (link_url like '%".$words."%'".
			" OR link_url_title like '%".$words."%'".
			" OR link_title like '%".$words."%'".
			" OR link_content like '%".$words."%'".
			" OR link_tags like '%".$words."%')";
Reply With Quote