summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author <changelog@php.net>2003-07-23 00:30:29 +0000
committer <changelog@php.net>2003-07-23 00:30:29 +0000
commita480901c9f9f61ea4a59d7ebe69abb430ef5aaf7 (patch)
tree6ae9f30cdab14599cf8d80ceccf0802e68c8e333
parentdc0606f041bbea4690bf20e4c804403429610ca2 (diff)
downloadphp-git-a480901c9f9f61ea4a59d7ebe69abb430ef5aaf7.tar.gz
ChangeLog update
-rw-r--r--Zend/ChangeLog27
1 files changed, 27 insertions, 0 deletions
diff --git a/Zend/ChangeLog b/Zend/ChangeLog
index 9d3243737f..2637244ec7 100644
--- a/Zend/ChangeLog
+++ b/Zend/ChangeLog
@@ -1,3 +1,30 @@
+2003-07-22 Marcus Boerger <marcus.boerger@post.rwth-aachen.de>
+
+ * zend_hash.h:
+ Fix for the moment
+
+2003-07-22 Zeev Suraski <zeev@zend.com>
+
+ * zend_execute.c
+ zend_hash.c
+ zend_hash.h
+ zend_operators.c
+ zend_operators.h:
+ Improve infrastructure of numeric handling of elements in symbol tables.
+
+ When you want to work with a symbol table, and you don't know whether you
+ have a numeric ("string that looks like a number") or a string element in
+ your hands, use zend_symtable_*() functions, in place of zend_hash_*()
+ functions.
+
+ * zend_execute.c
+ zend_object_handlers.c
+ zend_object_handlers.h
+ zend_objects_API.c:
+ Fix isset()/empty() for non-trivial object elements
+ (API change - read_property now accepts an extra element)
+ Fixes bug #24436
+
2003-07-21 Zeev Suraski <zeev@zend.com>
* zend_object_handlers.c: