From 1a0b455d71f063cc3d8785d3a90a34d1fd082216 Mon Sep 17 00:00:00 2001 From: Date: Wed, 2 Apr 2003 01:30:47 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 200 +++++++++++++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 32 ++++++++ 2 files changed, 232 insertions(+) diff --git a/ChangeLog b/ChangeLog index 1b6c3af137..35fc17fd1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,203 @@ +2003-04-01 Jay Smith + + * ext/pgsql/pgsql.c + ext/pgsql/php_pgsql.h: + Fix 'timestamp without timezone', too. + +2003-04-01 Marcus Boerger + + * ext/pgsql/pgsql.c: + Fix 'time with timezone', too + +2003-04-01 Jay Smith + + * ext/pgsql/pgsql.c: + Fixed bug #23009 (pg_select with timestamp) + +2003-04-01 Rasmus Lerdorf + + * (PHP_4_3) + TODO_SEGFAULTS + ext/standard/array.c: + Arbitrarily limit array_pad() to only do 1 million elements at a time. + Probably still too high, but it solves the segfault for now. + +2003-04-01 Moriyoshi Koizumi + + * ext/standard/tests/filters/bug22538.phpt: + Fixed bogus test + +2003-04-01 Sascha Schumann + + * (PHP_4_3) + main/output.c: + s/0/FAILURE/ + + * main/output.c: + Fix an uninitialized read, default to FAILURE + + * (PHP_4_3) + main/output.c: + Fix an uninitialised read for ob_start(array()) + +2003-04-01 Rasmus Lerdorf + + * ext/dbase/dbf_head.c + ext/exif/exif.c + ext/standard/array.c: + MFB + + * (PHP_4_3) + TODO_SEGFAULTS + ext/dbase/dbf_head.c: + Argh!!! I guess nobody has ever looked at this code. + +2003-04-01 Moriyoshi Koizumi + + * ext/standard/tests/filters/bug22538.phpt: + Added a test case for bug #22538 + + * ext/mbstring/php_mbregex.c: + oops + + * ext/mbstring/php_mbregex.c: + Reverted the last patch; the problem is elsewhere.. + +2003-04-01 Rasmus Lerdorf + + * (PHP_4_3) + TODO_SEGFAULTS + ext/exif/exif.c: + Fix exif crashes + +2003-04-01 Moriyoshi Koizumi + + * ext/mbstring/php_mbregex.c: + Fixed crash that occurs due to an abused persistent hashtable. + +2003-04-01 Rasmus Lerdorf + + * (PHP_4_3) + TODO_SEGFAULTS: + Update (not fixed in HEAD because the API for this function needs to + change in PHP5. It is moronic the way it is now) + + * (PHP_4_3) + ext/sockets/sockets.c: + Ok, really fix socket_iovec_alloc() this time + +2003-04-01 Jani Taskinen + + * NEWS: + crap removal + + * (PHP_4_3) + NEWS: + BFN + + * (PHP_4_3) + configure.in: + MFH: Fixed bug #22987 (missing perror() check in configure) + + * configure.in: + Fixed bug #22987 (missing perror() check in configure) + +2003-04-01 Sascha Schumann + + * (PHP_4_3) + TODO_SEGFAULTS: + more insight re. ob_start bug + + * (PHP_4_3) + TODO_SEGFAULTS: + The ob_start issue is reproducible. + +2003-04-01 Moshe Doron + + * ext/standard/tests/strings/bug22904.phpt: + oops + + * ext/standard/tests/strings/bug22904.phpt: + revert due the last string.c revert + + * ext/standard/string.c: + revert last commit for now + +2003-04-01 Sascha Schumann + + * (PHP_4_3) + TODO_SEGFAULTS: + editing + + * TODO_SEGFAULTS + TODO_SEGFAULTS: + + file TODO_SEGFAULTS was initially added on branch PHP_4_3. + +2003-04-01 Moriyoshi Koizumi + + * (PHP_4_3) + ext/mbstring/mbstring.c: + MFH(r-1.170): fixed crash in mb_convert_encoding() that occurs when a void + array is passed as the third parameter. + + * ext/mbstring/mbstring.c: + Fixed crash in mb_convert_encoding() that occurs when a void array is + passed as the third parameter + +2003-04-01 Thies C. Arntzen + + * ext/standard/info.c + ext/standard/info.c: + -** empty log message *** + +2003-04-01 Sascha Schumann + + * ext/ircg/ircg.c: + Fix segfault, logic and lock issue in ircg_is_conn_alive + + * ext/dba/config.m4 + ext/dba/config.m4 + ext/dba/config.m4: + fix VPATH builds + + * ext/standard/basic_functions.c: + Fix segfault in register_shutdown_function + + * (PHP_4_3) + acinclude.m4: + No need for shtool + + * acinclude.m4: + Don't need shtool + + * ext/ircg/ircg.c: + Intermediate commit of relocation map integration + + * (PHP_4_3) + ext/standard/file.c + ext/standard/file.c: + Fix segfault in flock() + +2003-04-01 Sara Golemon + + * ext/standard/mail.c: + Bug #22962 + +2003-04-01 Sebastian Bergmann + + * ext/standard/basic_functions.c + ext/standard/basic_functions.h: + Sorry Sterling, but this broke the ZTS build and I'd rather not 'ZTS fix' + an April's Fool joke. + +2003-04-01 Sterling Hughes + + * ext/standard/basic_functions.c + ext/standard/basic_functions.h: + Add the landonize() and landonize_url() functions which provide a secure + alternative to the sha1() and sha1_file() functions. + 2003-03-31 Moriyoshi Koizumi * ext/standard/tests/serialize/001.phpt: diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 4936048d0b..56391b408a 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,35 @@ +2003-04-01 Andrei Zmievski + + * zend_execute.c: + Stas's patch on zend_execute.c (1.448 -> 1.449) resulted in a bug where + the namespaced member accesses didn't work. This should hopefully + correct it. + + * zend_builtin_functions.c + zend_compile.c + zend_compile.h + zend_execute.c + zend_object_handlers.c + zend_opcode.c: + Split ZEND_NAMESPACE into user and internal namespaces. Hope this is + okay with engine folks. + +2003-04-01 Stanislav Malyshev + + * zend_builtin_functions.c: + improve namespace name hanfling + + * zend_builtin_functions.c: + fix get_declared_classes() + + * zend_language_parser.y + zend_language_scanner.l: + Add __NAMESPACE__ auto-constant. + + * zend_builtin_functions.c: + make get_declared_classes() work with namespaces (based on Tal Peer's + patch) + 2003-03-31 Andrei Zmievski * zend.h -- 2.50.1