ID: 24871 Updated by: [EMAIL PROTECTED] Reported By: php at webdevelopers dot cz -Status: Open +Status: Closed Bug Type: Class/Object related Operating System: Red Hat Linux 7.3 PHP Version: 4.3.1 New Comment:
This bug has been fixed in CVS. In case this was a PHP problem, snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. In case this was a documentation problem, the fix will show up soon at http://www.php.net/manual/. In case this was a PHP.net website problem, the change will show up on the PHP.net site and on the mirror sites in short time. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2003-07-30 09:00:13] php at webdevelopers dot cz Description: ------------ aggrgate() does not aggregate the method that has the name similar to the name of the constructor...? Reproduce code: --------------- <?php class a { function a() { echo "CREATED A;"; } } class b { function bb() { echo "BB();"; } function xbb() { echo "XBB();"; } } $a=new a(); aggregate($a, "b"); $a->xbb(); $a->bb(); ?> Expected result: ---------------- CREATED A;XBB();BB(); Actual result: -------------- CREATED A;XBB() Fatal error: Call to undefined function: bb() in test.php on line 28 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=24871&edit=1
