Thread: links
View Single Post
  #9  
Old 06-12-2009, 02:43 PM
BMR777 BMR777 is offline
Member
 
Join Date: Jan 2011
Posts: 1,122
Gender: Male
Credits: 16,985
BMR777 is on a distinguished road
Default RE: links

This may actually be the fault of the BBCode parser.

In inc > bbcode.php find:

PHP Code:
$text preg_replace('|\[url=(.+?)\](.+?)\[\/url\]|i''<a href="$1" target="_blank">$2</a>'$text); 
Replace With:

PHP Code:
$text preg_replace('|\[url=(.+?)\](.+?)\[\/url\]|i''<a href="$1">$2</a>'$text); 
That should make it where all links open in the same window, rather than in another window. :)
Reply With Quote