Change rel for external links to nofollow ugc (#1884)

This commit is contained in:
Matteo Contrini 2019-09-23 23:37:49 +02:00 committed by Franz Liedke
parent fb0a875c6d
commit 09609a9f20

View File

@ -140,7 +140,7 @@ class Formatter
foreach ($dom->getElementsByTagName('a') as $a) {
$a->setAttribute('target', '_blank');
$a->setAttribute('rel', 'nofollow');
$a->setAttribute('rel', 'nofollow ugc');
}
$dom->saveChanges();