MyBB Community Forums

Full Version: Editing Links - Please Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I would like it so all links users post on my forum are:

http://www.google.com/url?q=http://site.com

This is to stop people from finding out where the links were referred from. What code do I need to edit?

Thanks in advance.
why do you need to do that for
hello there,

open ./inc/functions_post.php

find

$fullurl = "http://".$fullurl;

it is available 2 time

replace it with

$fullurl = "http://www.google.com/url?q=http://".$fullurl;

i guess that's what u are looking for

regards
Thanks but it didnt work, so instead I did this:

	$link = "<a href=\"http://www.google.com/url?q=$fullurl\" target=\"_blank\">$name</a>";

Seems to work fine.
how can I do this in mybb 1.2?

Edit: Nevermind its just in class_parser.php instead.