PDA

View Full Version : Links in same window?


Athorn
11-26-2005, 07:28 AM
How would you make it so links open in the same window in posts that are posted?

http://www.google.com that google link would open in a new window. I want it to open in this window.

Thank you for your time,
Aaron Thorn

JTyson
11-26-2005, 07:36 AM
in 3.5 i guess you would have to edit includes/class_bbcode.php
Find
return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
Replace with
return "<a href=\"$rightlink\">$text</a>";

Athorn
11-26-2005, 03:10 PM
Thank you that worked.