From fa09e56a43a0240c22c313eceeb88c90b93a00af Mon Sep 17 00:00:00 2001 From: Chuck Hagenbuch Date: Mon, 1 Nov 1999 16:44:36 +0000 Subject: [PATCH] Trying to clean up the last of the body->id/body->description confusion. --- ext/imap/imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/imap/imap.c b/ext/imap/imap.c index 3ea87e00bb..a2cc19b609 100644 --- a/ext/imap/imap.c +++ b/ext/imap/imap.c @@ -2203,7 +2203,7 @@ PHP_FUNCTION(imap_bodystruct) } if ( body->id ){ add_property_long( return_value, "ifid", 1 ); - if(body->description) add_property_string( return_value, "id", body->id, 1 ); + add_property_string( return_value, "id", body->id, 1 ); } else { add_property_long( return_value, "ifid", 0 ); } -- 2.40.0