From 17d544632e0cc852db5807b86ec9e8eb68fc205d Mon Sep 17 00:00:00 2001 From: Date: Thu, 29 Apr 2004 00:36:06 +0000 Subject: [PATCH] ChangeLog update --- ChangeLog | 38 ++++++++++++++++++++++++++++++++++++++ Zend/ChangeLog | 5 +++++ 2 files changed, 43 insertions(+) diff --git a/ChangeLog b/ChangeLog index b57c954c1b..c4a7b3ebd2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,41 @@ +2004-04-28 Wez Furlong + + * ext/com_dotnet/com_extension.c: + Should have tested this change before committing. + +2004-04-28 Marcus Boerger + + * ZendEngine2/zend_exceptions.h: + Fix c++ builds + +2004-04-28 Wez Furlong + + * 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_4_3) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 7800411051..f17147ba34 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,8 @@ +2004-04-28 Marcus Boerger + + * zend_exceptions.h: + Fix c++ builds + 2004-04-27 Marcus Boerger * zend_builtin_functions.c: -- 2.50.1