summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2002-07-16 00:18:24 +0000
committer <changelog@php.net>2002-07-16 00:18:24 +0000
commit449327f57c3804dae822798b0cf313da080a9a02 (patch)
tree729d1d57ddfa72c694879fdc46564a7aeea25196
parentc652c4b5127c4dad41a228fa76bd954541f5056f (diff)
downloadphp-git-449327f57c3804dae822798b0cf313da080a9a02.tar.gz
ChangeLog update
-rw-r--r--ChangeLog25
-rw-r--r--Zend/ChangeLog24
2 files changed, 49 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d7a0d0cf7..f04ab41631 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2002-07-15 edink <edink@pb1.pair.com>
+
+ * ext/mbstring/mbstring.c: MFH
+
+ * ext/mbstring/mbstring.c:
+ Fix bug #16985 (wrong count of GET/POST variables).
+
+2002-07-15 sesser <sesser@pb1.pair.com>
+
+ * main/rfc1867.c: use Zend API to access llist count
+
+2002-07-15 hyanantha <hyanantha@pb1.pair.com>
+
+ * ext/mysql/php_mysql.c:
+ mysql_create_db and mysql_drop_db disabled for NetWare
+
+2002-07-15 yohgaki <yohgaki@pb1.pair.com>
+
+ * 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 <andrei@pb1.pair.com>
* 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 <derick@pb1.pair.com>
+
+ * zend_operators.c: - MFH of the crap removal
+
+2002-07-15 Andi Gutmans <andi@pb1.pair.com>
+
+ * 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 <andi@pb1.pair.com>
* zend_compile.c