okey, I think I know what you need to do....do a search for the following in the same file you just edit..
PHP Code:
$righturl = "http://$righturl";
and remove the
http:// so it'll look like:
PHP Code:
$righturl = "$righturl";
then replace:
PHP Code:
//one of them your useing, pic which one your using now
//old one...the non edited one I mean
return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>"
//new one...the one that you probly replace from what I told you on the other post
return "<a href=\"www.domain.com/redir.php?url=$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>"
and replace whatever one with:
PHP Code:
return "<a href=\"http://www.domain.com/redir.php?url=$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>"
it should work now