diff options
| author | JustAMacUser <donotreply@example.org> | 2016-02-19 01:35:11 -0500 |
|---|---|---|
| committer | JustAMacUser <donotreply@example.org> | 2016-02-19 01:35:11 -0500 |
| commit | a01bfd78c2a8240a6f73ec16098fc8a3ff6e8663 (patch) | |
| tree | 86c8c180ad7f89f87afff35a71288dd35bcec939 | |
| parent | 1003f71e0459b4b5e7d5e7b393d0baba02e82808 (diff) | |
Remove srcset and sizes attributes from img tag if locally caching images.
| -rw-r--r--[-rwxr-xr-x] | include/functions2.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/functions2.php b/include/functions2.php index 7c714f564..ed22a0623 100755..100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -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); |