PDA

View Full Version : How to make links in post nofollow?


i13
Sun 25th May '08, 12:24am
Hi!
Guys need to this to reduce spam!
Making all links in user post nofollow.
Anyone know how to do this? I have searched it before posting.

Plz help!

Vtec44
Sun 25th May '08, 2:29am
This question is more for vB.org since it requires modifying the source code of your php file.

In class_bbcode.php


return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";


replace it with

return "<a href=\"$rightlink\" target=\"_blank\" rel=\"nofollow\" >$text</a>";


Disclaimer: I'm not responsible if the above code breaks your forum.

i13
Mon 26th May '08, 2:27am
Don't worry it won't break ;)
Thanks!