diff options
author | Chuck Hagenbuch <chagenbu@php.net> | 1999-11-01 16:44:36 +0000 |
---|---|---|
committer | Chuck Hagenbuch <chagenbu@php.net> | 1999-11-01 16:44:36 +0000 |
commit | fa09e56a43a0240c22c313eceeb88c90b93a00af (patch) | |
tree | 20264a89174e2980a9769a872ef67415c313e7e5 /ext/imap | |
parent | 1fd576485f0926f401433663ded9779e56c805bb (diff) | |
download | php-git-fa09e56a43a0240c22c313eceeb88c90b93a00af.tar.gz |
Trying to clean up the last of the body->id/body->description confusion.
Diffstat (limited to 'ext/imap')
-rw-r--r-- | ext/imap/imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); } |