From: Andrew Dolgov Date: Sun, 3 Aug 2008 14:17:28 +0000 (+0100) Subject: attachments display: fix wrong type assignment X-Git-Tag: 1.2.26~43 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=b84b68d9bd937d3c9df152a7f7c8167f37e2ace6;p=tt-rss.git attachments display: fix wrong type assignment --- diff --git a/functions.php b/functions.php index 4ae5aa08..5bb5ea38 100644 --- a/functions.php +++ b/functions.php @@ -4712,7 +4712,7 @@ $entry = ""; - if (($ctype = __("audio/mpeg")) && + if (($ctype == __("audio/mpeg")) && (get_pref($link, "ENABLE_FLASH_PLAYER")) ) { $entry .= " "; @@ -5180,7 +5180,7 @@ $entry = ""; - if (($ctype = __("audio/mpeg")) && + if (($ctype == __("audio/mpeg")) && (get_pref($link, "ENABLE_FLASH_PLAYER")) ) { $entry .= " ";