From: Date: Thu, 29 Apr 2004 00:36:06 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_0_1~336 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17d544632e0cc852db5807b86ec9e8eb68fc205d;p=php ChangeLog update --- 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: