From d42e2206e5a360088314f4c4e76ff4a7f4cd7cb8 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 12 Nov 2008 22:58:48 -0700 Subject: [PATCH] Fell into the trap again where ('#' == '#.0'). --- imp/message.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0