changelog Wed Apr 28 20:36:03 2004 EDT
Modified files: /php-src ChangeLog Log: ChangeLog update http://cvs.php.net/diff.php/php-src/ChangeLog?r1=1.1612&r2=1.1613&ty=u Index: php-src/ChangeLog diff -u php-src/ChangeLog:1.1612 php-src/ChangeLog:1.1613 --- php-src/ChangeLog:1.1612 Tue Apr 27 20:33:41 2004 +++ php-src/ChangeLog Wed Apr 28 20:36:02 2004 @@ -1,3 +1,41 @@ +2004-04-28 Wez Furlong <[EMAIL PROTECTED]> + + * ext/com_dotnet/com_extension.c: + Should have tested this change before committing. + +2004-04-28 Marcus Boerger <[EMAIL PROTECTED]> + + * ZendEngine2/zend_exceptions.h: + Fix c++ builds + +2004-04-28 Wez Furlong <[EMAIL PROTECTED]> + + * 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 <[EMAIL PROTECTED]> * (PHP_4_3) @@ -2588,7 +2626,7 @@ 2004-03-18 Pierre-Alain Joye <[EMAIL PROTECTED]> * ext/gd/tests/bug27582_2.phpt: - - Fix the test description and $Id: ChangeLog,v 1.1612 2004/04/28 00:33:41 changelog Exp $ + - Fix the test description and $Id: ChangeLog,v 1.1613 2004/04/29 00:36:02 changelog Exp $ 2004-03-18 Derick Rethans <[EMAIL PROTECTED]>