From: Date: Thu, 4 Sep 2003 00:32:10 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_7~247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2c873fa0c3daa234a886ef8904e48a51f46f481;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index c64a399775..4a4bf8a0de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,167 @@ +2003-09-03 Jani Taskinen + + * acinclude.m4: + Cleanup after ourselves. + +2003-09-03 Marcus Boerger + + * ZendEngine2/zend_compile.c: + Partly revert and reintroduce hash table entries for the ctor. + + * tests/classes/clone_003.phpt: + Fix test + + * ZendEngine2/zend_compile.c: + Nuke unused variable, too + + * ZendEngine2/zend_compile.c: + - Inheritance applies to __clone() too. + - No need to add additional functions for the constructor. + The handler uses the pointer as intended and doesn't look the the name. + + * ZendEngine2/zend_compile.c: + Cannot turn a static property into a non static one and vice versa + +2003-09-03 Sebastian Bergmann + + * ext/dom/php_dom.c: + ZTS fix. + +2003-09-03 Marcus Boerger + + * ZendEngine2/zend_API.c + ZendEngine2/zend_API.h + ZendEngine2/zend_compile.c + ZendEngine2/zend_default_classes.c: + Fix handling of static properties initialized to arrays + +2003-09-03 Ard Biesheuvel + + * ext/interbase/tests/006.phpt: + WS + +2003-09-03 Jani Taskinen + + * ext/standard/tests/serialize/bug25378.phpt: + + test for bug #25378 + +2003-09-03 Marcus Boerger + + * ZendEngine2/zend_compile.c: + Add missing error messages when violating static property inheritance + rules. + +2003-09-03 Jani Taskinen + + * (PHP_4_3) + NEWS + ext/standard/var_unserializer.re: + MFH: - Fixed bug #25378 (Invalid data passed to unserialize() causes + segfault) + + * ext/standard/var_unserializer.c + ext/standard/var_unserializer.c: + sync + + * ext/standard/var_unserializer.re: + - Fixed bug #25378 (Invalid data passed to unserialize() causes segfault) + +2003-09-03 Marcus Boerger + + * ZendEngine2/zend_API.c + ZendEngine2/zend_compile.c + ZendEngine2/zend_execute.c + ZendEngine2/zend_object_handlers.c: + Fix static properties. + +2003-09-03 Ard Biesheuvel + + * (PHP_4_3) + ext/interbase/tests/006.phpt: + MFH Test correct binding of 16-bit NUMERIC parameters + + * ext/interbase/tests/006.phpt: + Test correct binding of 16-bit NUMERIC parameters + + * (PHP_4_3) + ext/interbase/interbase.c: + MFH Fix binding of 16-bit NUMERIC parameters + + * ext/interbase/interbase.c: + Fix binding of 16-bit NUMERIC parameters + +2003-09-03 Sascha Schumann + + * (PHP_4_3) + NEWS: + Fixed FastCGI being unable to bind to a specific IP + +2003-09-03 Jani Taskinen + + * (PHP_4_3) + NEWS + ext/standard/scanf.c: + MFH: - Fixed bug #25372 (sscanf() does not work with %X) + + * ext/standard/scanf.c: + - Fixed bug #25372 (sscanf() does not work with %X) + +2003-09-03 Marcus Boerger + + * ZendEngine2/zend_compile.c: + Allow redeclareing a protected property as public. + +2003-09-03 Rob Richards + + * ext/dom/document.c + ext/dom/domexception.c + ext/dom/php_dom.c + ext/dom/php_dom.h: + changes to php_dom.h for last commit + replaced removed closing tags - doh + + * ext/dom/document.c + ext/dom/dom_fe.h + ext/dom/domexception.c + ext/dom/php_dom.c: + add document HTML load/save methods + add document standalone validate method + cleanup some prototype declarations + domexception inherits from default exception + +2003-09-03 Zeev Suraski + + * ZendEngine2/zend_compile.c: + Revert bogus patch + One must *never* use E_CORE_* error levels! + +2003-09-03 Sascha Schumann + + * sapi/cgi/README.FastCGI + sapi/cgi/README.FastCGI: + Update documentation, -b ip:port works + + * sapi/cgi/cgi_main.c + sapi/cgi/cgi_main.c: + fix heuristic: if someone passed "-b IP:port", this check would + falsely recognize the parameter as defining only a port. + + * scripts/phpize.m4 + scripts/phpize.m4: + centralize cflags + +2003-09-03 Jani Taskinen + + * (PHP_4_3) + ext/gd/gd.dsp: + - Added JISX0208=1 and USE_GD_JISX0208 defines + +2003-09-03 Marcus Boerger + + * ZendEngine2/zend_reflection_api.c: + Clearly distinguish between Const, Static and Other members. + 2003-09-02 Marcus Boerger * ZendEngine2/zend_compile.c: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 1ca0face3a..d0ad44b389 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,49 @@ +2003-09-03 Marcus Boerger + + * zend_compile.c: + Partly revert and reintroduce hash table entries for the ctor. + + * zend_compile.c: + Nuke unused variable, too + + * zend_compile.c: + - Inheritance applies to __clone() too. + - No need to add additional functions for the constructor. + The handler uses the pointer as intended and doesn't look the the name. + + * zend_compile.c: + Cannot turn a static property into a non static one and vice versa + + * zend_API.c + zend_API.h + zend_compile.c + zend_default_classes.c: + Fix handling of static properties initialized to arrays + + * zend_compile.c: + Add missing error messages when violating static property inheritance + rules. + + * zend_API.c + zend_compile.c + zend_execute.c + zend_object_handlers.c: + Fix static properties. + + * zend_compile.c: + Allow redeclareing a protected property as public. + +2003-09-03 Zeev Suraski + + * zend_compile.c: + Revert bogus patch + One must *never* use E_CORE_* error levels! + +2003-09-03 Marcus Boerger + + * zend_reflection_api.c: + Clearly distinguish between Const, Static and Other members. + 2003-09-02 Marcus Boerger * zend_compile.c: