View Single Post
Old 03-15-2004, 07:23 AM   #4
vinyl-junkie
Purple Mole
 
Join Date: Jan 2004
Posts: 694
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.
vinyl-junkie is offline   Reply With Quote