diff options
author | Rasmus Lerdorf <rasmus@php.net> | 1999-10-29 21:00:43 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 1999-10-29 21:00:43 +0000 |
commit | 5175c71cc0fe1251a6a3e1d9bfdba061d9cfeac3 (patch) | |
tree | b5a87de303bb2d01a2380c47a3ef82eed0e87bbe | |
parent | f160ee878256c37d21bf6de225da5978e6fcadb9 (diff) | |
download | php-git-5175c71cc0fe1251a6a3e1d9bfdba061d9cfeac3.tar.gz |
Fix typo found by hholzgra@media-engineering.de
-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 845ff1815a..3ea87e00bb 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->description, 1 ); + if(body->description) add_property_string( return_value, "id", body->id, 1 ); } else { add_property_long( return_value, "ifid", 0 ); } |