From 8d102800b3fc21b03b2e7f8dc3486a7cf0622b3e Mon Sep 17 00:00:00 2001 From: Date: Wed, 11 Feb 2004 01:32:14 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 155 +++++++++++++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 56 ++++++++++++++++++ 2 files changed, 211 insertions(+) diff --git a/ChangeLog b/ChangeLog index 74b7f3f8fc..c834547e2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,158 @@ +2004-02-10 Zeev Suraski + + * ZendEngine2/tests/bug26698.phpt: + Ignore the memleak in this test + + * main/config.w32.h: + Clear that up + + * main/main.c: + Cleanup + + * main/config.w32.h + main/main.c: + Fix report_memleaks + +2004-02-10 Ilia Alshanetsky + + * (PHP_4_3) + sapi/cgi/cgi_main.c: + MFH: + Fixed win32 build. + Added missing headers needed for wait(). + Removed duplicate signal.h header. + + * sapi/cgi/cgi_main.c + sapi/cgi/libfcgi/include/fcgi_config.h: + Fixed win32 build. + Fixed building of libfcgi when PHP is built from another directory. + Added missing headers needed for wait(). + Removed duplicate signal.h header. + Removed unneeded variables. + +2004-02-10 Zeev Suraski + + * main/main.c: + Whitespace + + * ZendEngine2/zend_execute.c: + Fix bug #26698 (exceptions handled properly during argument passing to + functions) + +2004-02-10 Ilia Alshanetsky + + * (PHP_4_3) + NEWS + main/fopen_wrappers.c: + MFH: Fixed bug #26653 (open_basedir incorrectly resolved on win32). + + * main/fopen_wrappers.c: + Fixed bug #26653 (open_basedir incorrectly resolved on win32). + +2004-02-10 Zeev Suraski + + * ZendEngine2/zend_default_classes.c: + Fix bug #27186 + + * ZendEngine2/zend_execute_API.c: + Fix bug #26869 + +2004-02-10 Andi Gutmans + + * tests/lang/bug22231.phpt + tests/lang/bug22510.phpt: + Fix a couple of tests + +2004-02-10 Zeev Suraski + + * ZendEngine2/zend_execute.c: + Fix refcounting of ++/+= overloading (fix leak in __get()/__set() + based classes) + +2004-02-10 Jan Lehnardt + + * ext/tokenizer/tokenizer.c: + - fix #27197 for Greg (cellog@php.net) + +2004-02-10 Jani Taskinen + + * tests/lang/bug26866.phpt: + Add test case for bug #26866 + +2004-02-10 Andi Gutmans + + * ZendEngine2/zend_compile.c: + - Nuke more unused code + +2004-02-10 Zeev Suraski + + * ZendEngine2/zend_execute.c: + Fix handling in assignment using multidimensional array syntax to string + offset ($s = "FUBAR"; $s[0][0] = 1;) + +2004-02-10 Andi Gutmans + + * ZendEngine2/ZEND_CHANGES: + - We will go with PHP 4 behavior. With the new object model assigning by + reference has lost a lot of its importance. + + * ZendEngine2/zend_compile.c: + - Remove junk + +2004-02-10 Zeev Suraski + + * ZendEngine2/zend_execute.c: + Fix exception handling in opcodes spanned across multiple oplines (fixes + the crash in __set()) + + * NEWS: + Update NEWS + + * ext/simplexml/simplexml.c: + Implement get callback for SimpleXML (it now supports pre/post increment + as well as binary-assign-ops) + + * ZendEngine2/zend_execute.c: + - Fix pre/post increment for overloaded objects + - Fix binary-assign-op for overloaded objects + + NOTE: This requires the implementation of the 'get' callback! + +2004-02-10 Moriyoshi Koizumi + + * ZendEngine2/tests/bug22836.phpt: + - Correcting test. + +2004-02-10 Jani Taskinen + + * (PHP_4_3) + NEWS: + typos + +2004-02-10 Ilia Alshanetsky + + * (PHP_4_3) + NEWS + sapi/cgi/cgi_main.c: + MFH: Fixed bug #26758 (FastCGI exits immediately with status 255). + + * sapi/cgi/cgi_main.c: + Fixed bug #26758 (FastCGI exits immediately with status 255). + + * (PHP_4_3) + NEWS + php.ini-dist + php.ini-recommended + sapi/cgi/cgi_main.c: + MFH: Fixed bug #27026 (Added cgi.nph that allows forcing of the Status: 200 + header that is not normally needed). + + * php.ini-dist + php.ini-recommended + sapi/cgi/cgi_main.c: + Fixed bug #27026 (Added cgi.nph that allows forcing of the Status: 200 + header that is not normally needed). + 2004-02-09 Ilia Alshanetsky * (PHP_4_3) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 8082e726d8..7bb54d01da 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,59 @@ +2004-02-10 Zeev Suraski + + * tests/bug26698.phpt: + Ignore the memleak in this test + + * zend_execute.c: + Fix bug #26698 (exceptions handled properly during argument passing to + functions) + + * zend_default_classes.c: + Fix bug #27186 + + * zend_execute_API.c: + Fix bug #26869 + + * zend_execute.c: + Fix refcounting of ++/+= overloading (fix leak in __get()/__set() + based classes) + +2004-02-10 Andi Gutmans + + * zend_compile.c: + - Nuke more unused code + +2004-02-10 Zeev Suraski + + * zend_execute.c: + Fix handling in assignment using multidimensional array syntax to string + offset ($s = "FUBAR"; $s[0][0] = 1;) + +2004-02-10 Andi Gutmans + + * ZEND_CHANGES: + - We will go with PHP 4 behavior. With the new object model assigning by + reference has lost a lot of its importance. + + * zend_compile.c: + - Remove junk + +2004-02-10 Zeev Suraski + + * zend_execute.c: + Fix exception handling in opcodes spanned across multiple oplines (fixes + the crash in __set()) + + * zend_execute.c: + - Fix pre/post increment for overloaded objects + - Fix binary-assign-op for overloaded objects + + NOTE: This requires the implementation of the 'get' callback! + +2004-02-10 Moriyoshi Koizumi + + * tests/bug22836.phpt: + - Correcting test. + 2004-02-08 Zeev Suraski * zend_execute.c -- 2.40.0