summaryrefslogtreecommitdiff
path: root/Zend
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 /Zend
parentc652c4b5127c4dad41a228fa76bd954541f5056f (diff)
downloadphp-git-449327f57c3804dae822798b0cf313da080a9a02.tar.gz
ChangeLog update
Diffstat (limited to 'Zend')
-rw-r--r--Zend/ChangeLog24
1 files changed, 24 insertions, 0 deletions
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