diff options
author | <changelog@php.net> | 2002-06-27 00:22:58 +0000 |
---|---|---|
committer | <changelog@php.net> | 2002-06-27 00:22:58 +0000 |
commit | 5bb94cb3a2ef26e118bde8a043f5034bcdff941d (patch) | |
tree | fce9801ef626ba02c825b691981e4f1e55695b4f | |
parent | 7eb0741a68044119741f15e621727f8a04a36ffe (diff) | |
download | php-git-5bb94cb3a2ef26e118bde8a043f5034bcdff941d.tar.gz |
ChangeLog update
-rw-r--r-- | ChangeLog | 106 | ||||
-rw-r--r-- | Zend/ChangeLog | 21 |
2 files changed, 127 insertions, 0 deletions
@@ -1,3 +1,109 @@ +2002-06-26 Jani Taskinen <sniper@iki.fi> + + * 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 <anil@recoil.org> + + * 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 <sniper@iki.fi> + + * ext/odbc/config.m4: Better not pollute the EXTRA_LIBS with libpaths. + +2002-06-26 Marcus Börger <marcus.boerger@post.rwth-aachen.de> + + * main/spprintf.c: -xbuf_resize does not need to have return value + +2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> + + * 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 <sniper@iki.fi> + + * build/buildcheck.sh: silence the warning when glibtool is not found.. + +2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> + + * 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 <sascha@schumann.cx> + + * 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 <d.rethans@jdimedia.nl> + + * ext/msql/php_msql.c + ext/mssql/php_mssql.c + ext/mysql/php_mysql.c: Unify error messages + +2002-06-26 Sascha Schumann <sascha@schumann.cx> + + * 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 <d.rethans@jdimedia.nl> + + * ext/domxml/php_domxml.c + ext/dba/dba.c + ext/db/db.c: Unify error messages + +2002-06-26 Andi Gutmans <andi@zend.com> + + * ext/standard/var.c: - No idea why this wasn't crashing before. + +2002-06-26 Derick Rethans <d.rethans@jdimedia.nl> + + * 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 <marcus.boerger@post.rwth-aachen.de> * 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 <andi@zend.com> + + * 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 <andi@zend.com> * zend_fast_cache.h: |