Hyperlink in neuem Fenster
Verfasst: 09.12.2007 14:37
				
				Hallo, ich würde gerne wissen, was ich machen muss damit wenn man im Forum auf einen Hyperlink klickt die Seite in einem neuen Fenster geöffnet wird.
			phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
1. $html    = "$whitespace<!-- $tag --><a$class href=\"$url\">$text</a><!-- $tag -->$append"; Then open includes/functions.php, find this (around line 2704):
Code:
1. $html = "$whitespace<!-- $tag --><a$class href=\"$url\">$text</a><!-- $tag -->$append";
and replace with this:
Code:
1. $html = "$whitespace<!-- $tag --><a$class href=\"$url\" target=\"_blank\">$text</a><!-- $tag -->$append";