search.php
  • FIND:

    			$split_search = ( !strstr($multibyte_charset, $lang['ENCODING']) ) ?  split_words(clean_words('search', stripslashes($search_keywords), $stopword_array, $synonym_array), 'search') : split(' ', $search_keywords);	
    
  • REPLACE WITH:

    			$stripped_keywords = stripslashes($search_keywords);
    			$split_search = ( !strstr($multibyte_charset, $lang['ENCODING']) ) ?  split_words(clean_words('search', $stripped_keywords, $stopword_array, $synonym_array), 'search') : split(' ', $search_keywords);	
    			unset($stripped_keywords);
    
  • FIND:

    	ORDER BY c.cat_id, f.forum_order";
    
  • REPLACE WITH:

    	ORDER BY c.cat_order, f.forum_order";