From: Derick Rethans Date: Thu, 13 Jun 2002 06:32:14 +0000 (+0000) Subject: - Fix for bug #14410 (Patch by C. McCohy ). X-Git-Tag: php5_5_0~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1233f27eeced082543eade5e98360edaac4df454;p=php - Fix for bug #14410 (Patch by C. McCohy ). --- diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 2e0daf8062..750157c885 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -2863,6 +2863,9 @@ PHP_FUNCTION(imap_fetch_overview) if (env->references) { add_property_string(myoverview, "references", env->references, 1); } + if (env->in_reply_to) { + add_property_string(myoverview, "in_reply_to", env->in_reply_to, 1); + } add_property_long(myoverview, "size", elt->rfc822_size); add_property_long(myoverview, "uid", mail_uid(imap_le_struct->imap_stream, i)); add_property_long(myoverview, "msgno", i);