sanitize: disable referrer via referrerpolicy for img elements
This commit is contained in:
parent
6184f5264e
commit
7651b6e2cd
|
@ -1585,6 +1585,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($entry->nodeName == 'img') {
|
if ($entry->nodeName == 'img') {
|
||||||
|
$entry->setAttribute('referrerpolicy', 'no-referrer');
|
||||||
|
|
||||||
if ($entry->hasAttribute('src')) {
|
if ($entry->hasAttribute('src')) {
|
||||||
$is_https_url = parse_url($entry->getAttribute('src'), PHP_URL_SCHEME) === 'https';
|
$is_https_url = parse_url($entry->getAttribute('src'), PHP_URL_SCHEME) === 'https';
|
||||||
|
|
Loading…
Reference in New Issue