Thread: links
View Single Post
  #10  
Old 06-15-2009, 12:16 PM
zhiichiro zhiichiro is offline
Member
 
Join Date: Mar 2009
Posts: 106
Credits: 16,594
zhiichiro
Default RE: links

Quote:
Originally Posted by BMR777
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. :)
thnx but, where can i find the bbcode.php?

and also, i only need this on some pages, not all.
Reply With Quote