]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Thu, 29 Apr 2004 00:36:06 +0000 (00:36 +0000)
committer <changelog@php.net> <>
Thu, 29 Apr 2004 00:36:06 +0000 (00:36 +0000)
ChangeLog
Zend/ChangeLog

index b57c954c1b0185366ee946b7d22439d0f933e97e..c4a7b3ebd2351c89c3c8e8ee089d0fb3ed628fab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,41 @@
+2004-04-28  Wez Furlong  <wez.php@thebrainroom.net>
+
+    * ext/com_dotnet/com_extension.c:
+      Should have tested this change before committing.
+
+2004-04-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * ZendEngine2/zend_exceptions.h:
+      Fix c++ builds
+
+2004-04-28  Wez Furlong  <wez.php@thebrainroom.net>
+
+    * ext/com_dotnet/com_com.c
+      ext/com_dotnet/com_extension.c
+      ext/com_dotnet/com_handlers.c
+      ext/com_dotnet/com_saproxy.c
+      ext/com_dotnet/php_com_dotnet_internal.h:
+      Fix for Bug #28161 (and probably others that I can't find in the bug db;
+      the search interface sucks).
+      
+      Expand the proxy object so it can handle psuedo array style properties.
+      
+      ASP/VB code like this:
+      
+       headObj.Attribute("RID") = rid
+      
+      can be expressed like this in PHP:
+      
+       $headObj->Attribute['RID'] = $rid;
+      
+      In theory, this feature can be used for "multi dimensional" properties:
+      
+       headObj.Attribute("RID", "Foo") = rid;
+      
+      like this:
+      
+       $headObj->Attribute['RID']['Foo'] = $rid;
+
 2004-04-27  Sara Golemon  <php@alphaweb.net>
 
     * (PHP_4_3)
index 78004110516b654d99948821b71fd483b93d6674..f17147ba349687f97e608c4559f5af49c87949a6 100644 (file)
@@ -1,3 +1,8 @@
+2004-04-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
+
+    * zend_exceptions.h:
+      Fix c++ builds
+
 2004-04-27  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>
 
     * zend_builtin_functions.c: