Sorry, I misunderstood the question. This is untested, but I'm pretty sure this is what you need to do. Go into libs/search_function.php and find the following code:
PHP Code:
$url = eregi_replace("([a-z0-9])[/]+","\\\\1/",$content['site_url'].$content['path'].$content['file']);
Replace it with the following code:
PHP Code:
$url = eregi_replace("([a-z0-9])[/]+","\\\\1/",$content['site_url']);
Be sure you remove any word wrapping.
Let us know if this helps.