From: Michael M Slusarz Date: Thu, 13 Nov 2008 05:58:48 +0000 (-0700) Subject: Fell into the trap again where ('#' == '#.0'). X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=d42e2206e5a360088314f4c4e76ff4a7f4cd7cb8;p=horde.git Fell into the trap again where ('#' == '#.0'). --- diff --git a/imp/message.php b/imp/message.php index d4bad44af..363eabeff 100644 --- a/imp/message.php +++ b/imp/message.php @@ -659,7 +659,7 @@ if ($show_all_parts) { /* Build body text. This needs to be done before we build the attachment list * that lives in the header. */ foreach ($parts_list as $mime_id => $mime_type) { - if (in_array($mime_id, $display_ids)) { + if (in_array($mime_id, $display_ids, true)) { continue; }