From 4f06133d75c8111c303d40735f67282cd5b01989 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Thu, 26 Sep 2019 23:01:24 +0200 Subject: [PATCH] Stop opening external links in new tabs We accept that this may be desired by forum owners and will offer an extension to enable this feature. By default, we will not make any assumptions and simply adopt the web's and browsers' default behavior. Fixes #859. --- src/Formatter/Formatter.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Formatter/Formatter.php b/src/Formatter/Formatter.php index 25343b8de..a46ec52e7 100644 --- a/src/Formatter/Formatter.php +++ b/src/Formatter/Formatter.php @@ -137,7 +137,6 @@ class Formatter $dom = $configurator->tags['URL']->template->asDOM(); foreach ($dom->getElementsByTagName('a') as $a) { - $a->setAttribute('target', '_blank'); $a->setAttribute('rel', 'nofollow ugc'); }