Ok...Here is the scoop...
For some reason I was getting some extra code added into the URL.
When I have it turned ON (so you get the redirect page)...I get...(Note shortened so it all would show)
http://DOMAIN/tivo-vb/showthread.php?s=&threadid=5
When OFF....I get...
http://DOMAIN/tivo-vb/showthread.php?s=&-amp;threadid=5
Not sure where the extra "amp;" is being added. (Spaced '-' added for the site stripped it as it should have.
So, to get around this, I added a second str_replace line to remove it.... My code now looks like this for that area...
Code:
// User selectable Redirection by Kars
$url = str_replace("\"", "", $url);
$url = str_replace("amp;", "", $url);
As mentioned, I have NO CLUE where it was coming from. IF anyone does, please be so kind to let me know.

Hack does now work for me as needed.
Thanks
David