Log in

View Full Version : External Links


shaffer
07-20-2002, 02:08 PM
Somewhere within VBulletin is a code that tells it to open a new window when an external link is clicked. Whenever you click on an external link in the forums that someone has posted, it automatically opens up a new window. If you click on this www.google.com. It opens a new window.

Where would I find this code?

Thank you.

NTLDR
07-20-2002, 09:40 PM
Thats just the target=_blank tag in the href, most likly found in showthread.php or functions.php I suspect.

scsa20
07-20-2002, 11:12 PM
in admin/functions.php, do a search for:


return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>";


now, you see that one part that says target=\"_blank\" that's the code ;)

Chris M
07-21-2002, 10:59 AM
Yep...

The same way that :
target=_self
Opens it in this window...

Satan