http://www.easytutorials.org/phpbb3_pro ... indow.html
1. Forums with type=link
In styles/prosilver/template/forumlist_body.html find this:
Code: Alles auswählen
<a href="{forumrow.U_VIEWFORUM}" class="forumtitle">
Code: Alles auswählen
<a href="{forumrow.U_VIEWFORUM}" class="forumtitle"<!-- IF forumrow.S_IS_LINK --> target="_blank"<!-- ENDIF -->>
2. Links inside posts
In styles/prosilver/template/bbcode.html find this:
Code: Alles auswählen
<!-- BEGIN url --><a href="{URL}" class="postlink">{DESCRIPTION}</a><!-- END url -->
and replace with this:
Code: Alles auswählen
<!-- BEGIN url --><a href="{URL}" class="postlink" target="_blank">{DESCRIPTION}</a><!-- END url -->
Code: Alles auswählen
$html = "$whitespace<!-- $tag --><a$class href="$url">$text</a><!-- $tag -->$append";
Code: Alles auswählen
$html = "$whitespace<!-- $tag --><a$class href="$url" target="_blank">$text</a><!-- $tag -->$append";