]> granicus.if.org Git - php/commitdiff
Final IMAP fixes
authorZeev Suraski <zeev@php.net>
Sun, 1 Aug 1999 00:25:58 +0000 (00:25 +0000)
committerZeev Suraski <zeev@php.net>
Sun, 1 Aug 1999 00:25:58 +0000 (00:25 +0000)
ChangeLog
ext/imap/imap.c

index b6e83aec5967be182b387d55667914742c5f74c1..7e6015f9ebe31d128c6133ee25993233faedd1d8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,7 @@ PHP 4.0 CHANGE LOG                                                    ChangeLog
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 
 ??? ?? 1999, Version 4.0 Beta 2
+- Made the IMAP module work with PHP 4.0 (Zeev)
 - Fixed a problem with include()/require() of URLs (Sascha, Zeev)
 - Fixed a bug in implode() that caused it to corrupt its arguments (Zeev)
 - Added get_class($obj), get_parent_class($obj) and method_exists($obj,"name")
index 82bef45ad1c742ca8fa653d1a8c946bce1950f37..7d7014c066b17e6cf43caf2d6ce033c5dc0311ea 100644 (file)
@@ -1279,10 +1279,10 @@ PHP_FUNCTION(imap_headerinfo)
                do {
                        MAKE_STD_ZVAL(ccvals);
                        object_init(ccvals);
-                       if(addresstmp->personal) add_property_string( &ccvals, "personal", addresstmp->personal, 1);
-                       if(addresstmp->adl) add_property_string( &ccvals, "adl", addresstmp->adl, 1);
-                       if(addresstmp->mailbox) add_property_string( &ccvals, "mailbox", addresstmp->mailbox, 1);
-                       if(addresstmp->host) add_property_string( &ccvals, "host", addresstmp->host, 1);
+                       if(addresstmp->personal) add_property_string(ccvals, "personal", addresstmp->personal, 1);
+                       if(addresstmp->adl) add_property_string(ccvals, "adl", addresstmp->adl, 1);
+                       if(addresstmp->mailbox) add_property_string(ccvals, "mailbox", addresstmp->mailbox, 1);
+                       if(addresstmp->host) add_property_string(ccvals, "host", addresstmp->host, 1);
                        add_next_index_object(cc, ccvals);
                } while ( (addresstmp = addresstmp->next) );
                add_assoc_object(return_value, "cc", cc);