Topic: How to change links opening in new browser tab?

I'd prefer for my site to change the default to
open in new tab
not always in own

where can I set that?
is there a hook or something i can call on?

thanks for any input

Re: How to change links opening in new browser tab?

Which links?

Re: How to change links opening in new browser tab?

the url links in posts I meant sorry ....
so in a users post: www.xyz.com   <-- i want that to open in a tab

so target open in a new tab or window if tab isnt possible....  (_blank)

....

Re: How to change links opening in new browser tab?

Replace Line 609 in 'include/parser.php' with:

        return '<a href="'.$full_url.'" target="_blank">'.$link.'</a>';

Re: How to change links opening in new browser tab?

Thx much appreciated!