add rel=noreferrer to article links

This commit is contained in:
Andrew Dolgov 2013-06-20 11:59:41 +04:00
parent 17ca9c640a
commit 202a81e7ba
1 changed files with 4 additions and 1 deletions

View File

@ -2750,10 +2750,13 @@
if ($site_url) {
if ($entry->hasAttribute('href'))
if ($entry->hasAttribute('href')) {
$entry->setAttribute('href',
rewrite_relative_url($site_url, $entry->getAttribute('href')));
$entry->setAttribute('rel', 'noreferrer');
}
if ($entry->hasAttribute('src')) {
$src = rewrite_relative_url($site_url, $entry->getAttribute('src'));