Hi. In search_function.php replace:
PHP Code:
if (($option != "start") && ($option != "any") && ($option != "exact")) { $option = "start"; }
with the following:
PHP Code:
if (($option != "start") && ($option != "any") && ($option != "exact")) { $option = SEARCH_DEFAULT_MODE; }
Remember to remove any "word" wrapping in the above code.