Remove srcset and sizes attributes from img tag if locally caching images.
This commit is contained in:
parent
1003f71e04
commit
a01bfd78c2
|
@ -912,6 +912,14 @@
|
|||
|
||||
if (file_exists($cached_filename)) {
|
||||
$src = SELF_URL_PATH . '/public.php?op=cached_image&hash=' . sha1($src);
|
||||
|
||||
if ($entry->hasAttribute('srcset')) {
|
||||
$entry->removeAttribute('srcset');
|
||||
}
|
||||
|
||||
if ($entry->hasAttribute('sizes')) {
|
||||
$entry->removeAttribute('sizes');
|
||||
}
|
||||
}
|
||||
|
||||
$entry->setAttribute('src', $src);
|
||||
|
|
Loading…
Reference in New Issue