View Single Post
Old 03-25-2004, 10:20 PM   #8
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Hi. Hmm, what's that \1/ hanging out on the end of the link?

Using the robot_functions.php file from the ZIP, what happens if you replace the following:
PHP Code:
$retour['path'] = ereg_replace('(.*[^/])/?$','\\\\1/',ereg_replace('^/(.*)','\\\\1',ereg_replace("/+","/",$path))); 
with the following:
PHP Code:
$retour['path'] = ereg_replace('(.*[^/])/?$','\\1/',ereg_replace('^/(.*)','\\1',ereg_replace("/+","/",$path))); 
Remember to remove any "word" wrapping in the above code.
__________________
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