]> granicus.if.org Git - php/commitdiff
Fixed bug #39779 (Enable AUTH PLAIN mechanism in underlaying libc-client).
authorIlia Alshanetsky <iliaa@php.net>
Sun, 17 Dec 2006 18:22:53 +0000 (18:22 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 17 Dec 2006 18:22:53 +0000 (18:22 +0000)
NEWS
ext/imap/php_imap.c

diff --git a/NEWS b/NEWS
index 4c6eb7f94b9d510c4d6ec87d54c4cf83d813aaa7..97b104041bdb96e670c6fba5c55b6863aac112ac 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -67,6 +67,8 @@ PHP                                                                        NEWS
 - 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) 
index f47649b5e4f041636991d7130a3ebe8687ea934f..c3c1f76c5f5acdee6d0d8caeddd43f880db0d787 100644 (file)
@@ -471,6 +471,7 @@ PHP_MINIT_FUNCTION(imap)
 #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 ();