From: Date: Tue, 16 Jul 2002 00:18:24 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: dev~284 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=449327f57c3804dae822798b0cf313da080a9a02;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 1d7a0d0cf7..f04ab41631 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +2002-07-15 edink + + * ext/mbstring/mbstring.c: MFH + + * ext/mbstring/mbstring.c: + Fix bug #16985 (wrong count of GET/POST variables). + +2002-07-15 sesser + + * main/rfc1867.c: use Zend API to access llist count + +2002-07-15 hyanantha + + * ext/mysql/php_mysql.c: + mysql_create_db and mysql_drop_db disabled for NetWare + +2002-07-15 yohgaki + + * ext/pgsql/pgsql.c: Clean up code a little (Remove a use of magic number) + Change/add appropriate comments. + + * NEWS: Fixed news + + * NEWS: header sounds like http header. header -> header file + 2002-07-14 Andrei Zmievski * ext/pcre/php_pcre.c: Fix Bug #18341. diff --git a/Zend/ChangeLog b/Zend/ChangeLog index aeec611555..41b5c3fd20 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,27 @@ +2002-07-15 derick + + * zend_operators.c: - MFH of the crap removal + +2002-07-15 Andi Gutmans + + * ZEND_CHANGES + zend.c + zend.h + zend_API.c + zend_compile.c + zend_language_parser.y + zend_language_scanner.l + zend_opcode.c: + - Commit patch to support protected member variables (by Timm Friebe w/ + - some fixes by me). + - You can't access protected variables from outside the object. If you want + - to see a protected member from your ancestors you need to declare the + - member as protected in the class you want to use it in. You can't + - redeclare a protected variable as private nor the other way around. + + * zend_operators.c: + - Really implement bool increment/decrement as flip-flop. + 2002-07-14 Andi Gutmans * zend_compile.c