MyBB Community Forums

Full Version: Open Internal link on same window
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How can i open internal link posted by users to open in same window. However still make the signature link open in new window.

Its really annoying at times to open the thread links posted by users {inside the post content} in several new windows/tabs.

Is there a way out ?:
Anyone ?
Might not be the best way of doing it but should work. Line 838 of ./inc/class_parser.php:

if(!preg_match("#^[a-z0-9]+://#i", $url))

to:

global $mybb;

if(!preg_match("#^[a-z0-9]+://#i", $url))

Line 869:

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

to:

if(strpos($fullurl, $mybb->settings['bburl']) !== false)
{
	$link = "<a href=\"$fullurl\">$name</a>";
}
else
{
	$link = "<a href=\"$fullurl\" target=\"_blank\">$name</a>";
}

See if that works.
Works Perfect.

Cheers Smile