MyBB Community Forums

Full Version: User's posted links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Greetings,

Is it possible to make user's posted links "rel=nofollow"?

If yes please guide me.
Yes it is.

Open inc/class_parser.php and goto Line: 670 ... it should be:
		$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";

Replace it with...

		$link = "<a href=\"$fullurl\" target=\"_blank\" rel=\"nofollow\">$name</a>";

Smile