View Single Post
Old 01-04-2005, 10:15 PM   #3
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
It's a bug... to fix do the following:

In search_function.php find:
PHP Code:
else {
    
$num_in_strings_arr count($strings);
    
$leven_final "";
    
$leven_sum 0
And replace with:
PHP Code:
else {
    if (
is_array($strings)) {
        
$strings array_values($strings);
        
$num_in_strings_arr count($strings);
    }
    else { 
$num_in_strings_arr 0; }
    
$leven_final "";
    
$leven_sum 0
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote