From: Date: Thu, 27 Jun 2002 00:22:58 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: php-4.3.0dev_zend2_alpha2~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5bb94cb3a2ef26e118bde8a043f5034bcdff941d;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index aac9f87d21..be04f999a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,109 @@ +2002-06-26 Jani Taskinen + + * ext/imap/php_imap.c: MFH: fix for bug: #17999 + + * ext/imap/php_imap.c: - Fixed bug: #17999 + - The errors should always be stored, but they are not supposed to be + shown at request shutdown unless E_NOTICES are allowed. + +2002-06-26 Anil Madhavapeddy + + * ext/ncurses/config.m4: + use LIBNAME consistently. Useful on systems like OpenBSD where the curses + library is called 'curses' and not 'ncurses' + + * ext/ncurses/example1.php: + the ncurses_getch() is in the wrong place and never gets run + +2002-06-26 Jani Taskinen + + * ext/odbc/config.m4: Better not pollute the EXTRA_LIBS with libpaths. + +2002-06-26 Marcus Börger + + * main/spprintf.c: -xbuf_resize does not need to have return value + +2002-06-26 Derick Rethans + + * main/main.c + main/php_globals.h + php.ini-dist + php.ini-recommended: + - Implement Andrei's request for disabling memory leak reporting in debug + builds. + + * ext/standard/credits_sapi.h: - And the SAPI too + + * ext/standard/credits_ext.h: - Update credits + + * ext/mime_magic/TODO: - Update TODO + + * ext/mime_magic/mime_magic.c: - Nuke some TSRMLS_FETCHes + +2002-06-26 Jani Taskinen + + * build/buildcheck.sh: silence the warning when glibtool is not found.. + +2002-06-26 Derick Rethans + + * ext/gd/gd.c: - Fix build + + * Makefile.global: + - Let make clean follow symlinks (tested on Linux, IRIX, Solaris, FreeBSD + and Tru64) + + * ext/pgsql/config.m4: - Fix typo + + * ext/mcrypt/mcrypt.c: - Unify error messages + + * ext/mnogosearch/php_mnogo.c + ext/msession/msession.c: Unify error messages + +2002-06-26 Sascha Schumann + + * build/buildcheck.sh: + Prefer glibtool over libtool for Mac OS X compatibility + + Submitted by: various people, including blakers@mac.com + +2002-06-26 Derick Rethans + + * ext/msql/php_msql.c + ext/mssql/php_mssql.c + ext/mysql/php_mysql.c: Unify error messages + +2002-06-26 Sascha Schumann + + * ext/interbase/interbase.c + sapi/aolserver/aolserver.c: + Fix code which makes wrong assumptions about the return value of snprintf. + + The AOLserver module did not use the return value, so simply drop it. + +2002-06-26 Derick Rethans + + * ext/domxml/php_domxml.c + ext/dba/dba.c + ext/db/db.c: Unify error messages + +2002-06-26 Andi Gutmans + + * ext/standard/var.c: - No idea why this wasn't crashing before. + +2002-06-26 Derick Rethans + + * ext/cyrus/cyrus.c + ext/cybercash/cybercash.c + ext/curl/curl.c + ext/cpdf/cpdf.c + ext/com/COM.c + ext/ccvs/ccvs.c + ext/calendar/easter.c + ext/bcmath/bcmath.c + ext/aspell/aspell.c: Unify error messages + + * ext/ldap/ldap.c: - Unify error messages + 2002-06-25 Marcus Börger * ext/gd/gd.c: map imageellipse to imagearc if missing diff --git a/Zend/ChangeLog b/Zend/ChangeLog index a8f19a9817..55369fbe44 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,24 @@ +2002-06-26 Andi Gutmans + + * zend_execute_API.c: + - Autoloading support based on patch from Ivan Ristic. + - Again I hope this feature ends up working well because if it doesn't we + - might need to nuke it. This only works for global scoped classes and it + - will never work for sub-classes so don't even ask!!!!! + - Just define an __autoload() function in the global scope and it will be + - called with the class name as the parameter if it doesn't manage to find + - the class. + + * zend_API.c + zend_builtin_functions.c + zend_mm.h: - Centralize global class fetch + + * zend_alloc.c + zend_execute.c: + - Fix problem with scope's not changing correctly during method calls. + - Reapply a tiny optimization to the allocator so that in non-debug mode + - we clean memory without detecting leaks. + 2002-06-24 Andi Gutmans * zend_fast_cache.h: