Browse Source

- Fixed bug #49630 (imap_listscan function missing)

# Missing PHP_FE(), though nowdays it is used through of two aliases. (imap_scan() and imap_scanmailbox())
experimental/5.3-FPM
Felipe Pena 17 years ago
parent
commit
5596b05449
  1. 2
      NEWS
  2. 1
      ext/imap/php_imap.c

2
NEWS

@ -5,6 +5,8 @@ PHP NEWS
through the Reflection API. (Sebastian)
- Implemented FR #49253 (added support for libcurl's CERTINFO option).
(Linus Nielsen Feltzing <linus@haxx.se>)
- Fixed bug #49630 (imap_listscan function missing). (Felipe)
?? ??? 2009, PHP 5.3.1RC? <- WHY IS THIS HERE? Gonna be released after 5.3.1 or what??

1
ext/imap/php_imap.c

@ -487,6 +487,7 @@ const zend_function_entry imap_functions[] = {
PHP_FE(imap_delete, arginfo_imap_delete)
PHP_FE(imap_undelete, arginfo_imap_undelete)
PHP_FE(imap_check, arginfo_imap_check)
PHP_FE(imap_listscan, arginfo_imap_listscan)
PHP_FE(imap_mail_copy, arginfo_imap_mail_copy)
PHP_FE(imap_mail_move, arginfo_imap_mail_move)
PHP_FE(imap_mail_compose, arginfo_imap_mail_compose)

Loading…
Cancel
Save