diff --git a/formats/MrssFormat.php b/formats/MrssFormat.php index f7b11949..4066ec73 100644 --- a/formats/MrssFormat.php +++ b/formats/MrssFormat.php @@ -80,14 +80,8 @@ class MrssFormat extends FormatAbstract $feedUrl = get_current_url(); $linkSelf->setAttribute('href', $feedUrl); } elseif ($feedKey === 'icon') { - $allowedIconExtensions = [ - '.gif', - '.jpg', - '.png', - '.ico', - ]; $icon = $feedValue; - if ($icon && in_array(substr($icon, -4), $allowedIconExtensions)) { + if ($icon) { $feedImage = $document->createElement('image'); $channel->appendChild($feedImage); $iconUrl = $document->createElement('url');