From: Chuck Hagenbuch Date: Mon, 1 Nov 1999 16:44:36 +0000 (+0000) Subject: Trying to clean up the last of the body->id/body->description confusion. X-Git-Tag: php-4.0b3_RC2~51 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa09e56a43a0240c22c313eceeb88c90b93a00af;p=php Trying to clean up the last of the body->id/body->description confusion. --- 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 ); }