]> granicus.if.org Git - php/commitdiff
- Fix for bug #14410 (Patch by C. McCohy <mccohy@kyberdigi.cz>).
authorDerick Rethans <derick@php.net>
Thu, 13 Jun 2002 06:32:14 +0000 (06:32 +0000)
committerDerick Rethans <derick@php.net>
Thu, 13 Jun 2002 06:32:14 +0000 (06:32 +0000)
ext/imap/php_imap.c

index 2e0daf8062f36e67ba37f662db6284066d576c24..750157c8856b96362b586e3c9b3c948683609262 100644 (file)
@@ -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);