iliaa Sun Dec 17 18:22:53 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/imap php_imap.c /php-src NEWS Log: Fixed bug #39779 (Enable AUTH PLAIN mechanism in underlaying libc-client). http://cvs.php.net/viewvc.cgi/php-src/ext/imap/php_imap.c?r1=1.208.2.7.2.10&r2=1.208.2.7.2.11&diff_format=u Index: php-src/ext/imap/php_imap.c diff -u php-src/ext/imap/php_imap.c:1.208.2.7.2.10 php-src/ext/imap/php_imap.c:1.208.2.7.2.11 --- php-src/ext/imap/php_imap.c:1.208.2.7.2.10 Fri Nov 24 10:28:51 2006 +++ php-src/ext/imap/php_imap.c Sun Dec 17 18:22:53 2006 @@ -26,7 +26,7 @@ | PHP 4.0 updates: Zeev Suraski <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: php_imap.c,v 1.208.2.7.2.10 2006/11/24 10:28:51 tony2001 Exp $ */ +/* $Id: php_imap.c,v 1.208.2.7.2.11 2006/12/17 18:22:53 iliaa Exp $ */ #define IMAP41 @@ -471,6 +471,7 @@ #if HAVE_IMAP_KRB && defined(HAVE_IMAP_AUTH_GSS) auth_link(&auth_gss); /* link in the gss authenticator */ #endif + auth_link(&auth_pla); /* link in the plain authenticator */ #ifdef HAVE_IMAP_SSL ssl_onceonlyinit (); http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.432&r2=1.2027.2.547.2.433&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.432 php-src/NEWS:1.2027.2.547.2.433 --- php-src/NEWS:1.2027.2.547.2.432 Sat Dec 16 21:48:05 2006 +++ php-src/NEWS Sun Dec 17 18:22:53 2006 @@ -67,6 +67,8 @@ - Fixed bug #39782 (setTime() on a DateTime constructed with a Weekday yields incorrect results). (Ilia) - Fixed bug #39780 (PNG image with CRC/data error raises fatal error) (Pierre) +- Fixed bug #39779 (Enable AUTH PLAIN mechanism in underlaying libc-client). + (michael dot heimpold at s2000 dot tu-chemnitz dot de, Ilia) - Fixed bug #39775 ("Indirect modification ..." message is not shown). (Dmitry) - Fixed bug #39763 (magic quotes are applied twice by ext/filter in parse_str()). (Ilia)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php