diff options
| -rw-r--r-- | ChangeLog | 124 | ||||
| -rw-r--r-- | Zend/ChangeLog | 13 |
2 files changed, 137 insertions, 0 deletions
@@ -1,3 +1,127 @@ +2006-09-05 Ilia Alshanetsky <ilia@prohost.org> + + * ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h: + MFB: Fixed bug #38579 require_once/include_once optimization causes files + to be loaded multiple times. + + * (PHP_5_2) + NEWS: + BFN + + * (PHP_5_2) + ZendEngine2/zend_vm_def.h + ZendEngine2/zend_vm_execute.h: + Fixed bug #38579 require_once/include_once optimization causes files to be + loaded multiple times. + +2006-09-05 Nuno Lopes <nunoplopes@sapo.pt> + + * ext/tidy/php_tidy.h + ext/tidy/tidy.c + ext/tidy/tests/007.phpt + ext/tidy/tests/023.phpt: + sync code and tests with PHP_5_2 + + * (PHP_5_2) + ext/tidy/tidy.c + ext/tidy/tests/007.phpt + ext/tidy/tests/020.phpt + ext/tidy/tests/021.phpt + ext/tidy/tests/022.phpt + ext/tidy/tests/023.phpt + ext/tidy/tests/023.phpt: + sync code and tests between HEAD and PHP_5_2 branches. what a confusion... + + * (PHP_5_2) + ext/tidy/tidy.c + ext/tidy/tests/020.phpt: + finish the cleaning. also add a new test + +2006-09-05 Ilia Alshanetsky <ilia@prohost.org> + + * ext/pcre/config.w32: + Added missing defines needed for win32 build + +2006-09-05 Antony Dovgal <antony@zend.com> + + * (PHP_5_2) + ext/openssl/tests/004.phpt: + add test + + * ext/openssl/tests/004.phpt + ext/openssl/tests/004.phpt: + + add new test for multiple leaks in openssl_csr_new() + + * ext/openssl/openssl.c: + init variables + + * ext/openssl/tests/bug28382.phpt: + fix test + +2006-09-05 Nuno Lopes <nunoplopes@sapo.pt> + + * (PHP_5_2) + ext/tidy/tidy.c: + remove some leftover code from the time tidy would throw exceptions + + * ext/date/php_date.c + ext/libxml/libxml.c: + MFB: int->zend_bool where possible + + * (PHP_5_2) + ext/date/php_date.c + ext/libxml/libxml.c: + int->zend_bool where possible + + * ext/mbstring/mbstring.c: + MFB (int->long) + + * (PHP_5_2) + ext/mbstring/mbstring.c: + first fix from my new zend_parse_parameters_* checker + +2006-09-05 Edin Kadribasic <edink@emini.dk> + + * (PHP_5_2) + NEWS: + CWD php.ini search news + + * main/php_ini.c: + MFB + + * (PHP_5_2) + main/php_ini.c: + Search for php.ini in CWD in all sapi's *but* CLI. + This patch reverses wrong behavaiour introduced before the + release of 5.1.0. + + +2006-09-05 Antony Dovgal <antony@zend.com> + + * ext/imap/php_imap.c: + fix it in an other way + + * ext/imap/php_imap.c + ext/imap/php_imap.c + ext/imap/tests/imap_utf8.phpt + ext/imap/tests/imap_utf8.phpt + ext/imap/tests/imap_utf8.phpt: + fix leak in imap_utf8(), avoid extra strlen() call + add test + + * (PHP_5_2) + ext/gettext/gettext.c + ext/gettext/tests/dcngettext.phpt: + fix typo, add test + + * ext/gettext/gettext.c + ext/gettext/tests/dcngettext.phpt + ext/gettext/tests/dcngettext.phpt: + fix segfaulting typo in dcngettext() =) + add new test + 2006-09-04 Nuno Lopes <nunoplopes@sapo.pt> * ext/readline/readline.c diff --git a/Zend/ChangeLog b/Zend/ChangeLog index fd57dbd6e9..4971e32aac 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,16 @@ +2006-09-05 Ilia Alshanetsky <ilia@prohost.org> + + * zend_vm_def.h + zend_vm_execute.h: + MFB: Fixed bug #38579 require_once/include_once optimization causes files + to be loaded multiple times. + + * (PHP_5_2) + zend_vm_def.h + zend_vm_execute.h: + Fixed bug #38579 require_once/include_once optimization causes files to be + loaded multiple times. + 2006-09-04 Dmitry Stogov <dmitry@zend.com> * zend_vm_def.h |
