From f14cb04e8bc7935886052cafeacf997e1896c23d Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Sat, 3 Sep 2016 21:58:53 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=BE=20in=20paragraph?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Models/Feed.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Models/Feed.php b/app/Models/Feed.php index 5d09e7be8..f13c42b0b 100644 --- a/app/Models/Feed.php +++ b/app/Models/Feed.php @@ -309,11 +309,11 @@ class FreshRSS_Feed extends Minz_Model { $elinks[$elink] = '1'; $mime = strtolower($enclosure->get_type()); if (strpos($mime, 'image/') === 0) { - $content .= '
'; + $content .= '

'; } elseif (strpos($mime, 'audio/') === 0) { - $content .= '
💾'; + $content .= '

💾

'; } elseif (strpos($mime, 'video/') === 0) { - $content .= '
💾'; + $content .= '

💾

'; } else { unset($elinks[$elink]); }