From: Felipe Pena Date: Tue, 22 Sep 2009 18:18:57 +0000 (+0000) Subject: - Fixed bug #49630 (imap_listscan function missing) X-Git-Tag: php-5.2.12RC1~118 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cbdfd275766bd6374750a423d7ee06efe9e08cc;p=php - Fixed bug #49630 (imap_listscan function missing) # Missing PHP_FE(), though nowdays it is used through of two aliases. (imap_scan() and imap_scanmailbox()) --- diff --git a/NEWS b/NEWS index ff60f8d94e..4ec9fb51b7 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? ????, PHP 5.2.12 +- Fixed bug #49630 (imap_listscan function missing). (Felipe) - Fixed bug #49578 (make install-pear fails). (Hannes) 17 Sep 2009, PHP 5.2.11 diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index e44e7078e0..cb95c5eb4e 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -115,6 +115,7 @@ zend_function_entry imap_functions[] = { PHP_FE(imap_delete, NULL) PHP_FE(imap_undelete, NULL) PHP_FE(imap_check, NULL) + PHP_FE(imap_listscan, NULL) PHP_FE(imap_mail_copy, NULL) PHP_FE(imap_mail_move, NULL) PHP_FE(imap_mail_compose, NULL)