From: Date: Mon, 22 Jul 2002 00:19:47 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: dev~207 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=435c2611fd06613bb559ba1fb39e19cfd78005d0;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 8c6814f9ef..143207250d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,107 @@ +2002-07-21 helly + + * ext/exif/exif.c: unify error messages & notices + +2002-07-21 georg + + * ext/mysql/php_mysql.c: Automatic rollback for non committed transactions + + * ext/mysql/php_mysql.c: + removed changes for mysql_select_db (optional parameter) + + Why: + 1) Its not the common way to add additionally functionality for functions or + features which are already implemented in SQL. Therefore also a lot of + mysql functions are marked as deprecated (and will be removed in near future) + + 2) The implemented workaround works only when mysql_select_db was called + before (fetching the databasename from mysql->conn.db). It returns invalid + or inconsistent results e.g.: + + - when "USE databasename" via mysql_query was used + - when database was dropped or grant privileges had changed. + + In conjunction with persistent connection, there are also some inconsistencies, + cause mysql_select_db returns the databasename from an old connection. + + To determine the database name just use the SQL command "SELECT DATABASE()" + + * ext/mysql/php_mysql.c: fixed bug in mysql_real_escape_string: + allocated 1 more byte for '\0' terminating character + +2002-07-21 Stig Bakken + + * LICENSE: * yeah yeah + + * LICENSE: + * split #3 into two paragraphs again, like the Apache license we once + borrowed it from + +2002-07-21 markonen + + * acinclude.m4 + sapi/cgi/config.m4 + sapi/cli/config.m4: + Made PHP_ADD_LIBPATH use the $ld_runpath_switch and changed the Darwin + link lines in sapi/cli and sapi/cgi to use $NATIVE_RPATHS. + This is a tentative fix for #18450. + +2002-07-21 Sascha Schumann + + * build/build.mk + build/buildcheck.sh + buildconf: + Move autoconf-2.13 check into buildcheck.sh where we already have + version parsing code and (more importantly) proper error checking + for missing autoconf. + + * build/build2.mk: One should not ignore + + AC_PROG_CPP was called before AC_PROG_CC + + because this error caused the Solaris issue + +2002-07-21 derick + + * configure.in: - Merges sascha's fix + +2002-07-21 Sascha Schumann + + * configure.in: Fix warning + + Noticed by: Derick + +2002-07-21 Stig Bakken + + * pear/packages/Mail-1.0.tar + pear/packages/Net_SMTP-1.0.tar: * bundle these releases + + * pear/Mail.php + pear/package-Mail.xml: * moved to /pear cvs + +2002-07-21 yohgaki + + * ext/pgsql/pgsql.c + ext/pgsql/php_pgsql.h: + Added pg_fetch_all() that fetch all rows in result. + Useful and faster when there is enough memory. + +2002-07-21 Stig Bakken + + * pear/HTTP.php: * already moved to /pear + + * pear/PEAR/Dependency.php: * support "zend" dependency type + + * pear/package-Net_SMTP.xml: * moved to /pear cvs + + * pear/package.dtd: * added missing license element + * added "zend" dependency type + + * pear/PEAR.php: * always enable track_errors + * added throwError method (simpler version of raiseError) + + * LICENSE: * license out of "alpha" + 2002-07-20 derick * NEWS: - Typos diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 9a5f81dd39..fb0f27af31 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,9 @@ +2002-07-21 Andi Gutmans + + * zend_compile.c: + - Fix bug reported by Sebastian where old constructors didn't work in + - nested classes. + 2002-07-18 derick * zend.h