ID: 31582
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Assigned
Bug Type: Scripting Engine problem
Operating System: linux
PHP Version: 4CVS-2005-01-17
-Assigned To:
+Assigned To: stas
New Comment:
Yet another overload bug..Stas, can you look into this too?
Previous Comments:
------------------------------------------------------------------------
[2005-01-17 11:39:23] [EMAIL PROTECTED]
agh... try again..
class ddo_base {
function __call($method,$args,&$return) {
echo "METHOD:".$method;
return true;
}
}
class ddo extends ddo_base {
}
overload("ddo_base");
$x = new ddo_base;
$x->helloWorld();
$x = new ddo;
$x->helloWorld();
------------------------------------------------------------------------
[2005-01-17 11:36:12] [EMAIL PROTECTED]
Description:
------------
the class of an overloaded class is not honouring the fact that it's
parent is overloaded. (as per previous releases)
Reproduce code:
---------------
class ddo_base {
echo "METHOD: ".$method;
function __call($method,$args,&$return) {
return true;
}
}
class ddo extends ddo_test {
}
overload("ddo_base");
$x = new ddo_base;
$x->helloWorld();
$x = new ddo;
$x->helloWorld();
Expected result:
----------------
METHOD: ddo_testMETHOD: helloworldMETHOD: ddoMETHOD: helloworld
Actual result:
--------------
METHOD: ddo_testMETHOD: helloworld
Fatal error: Call to undefined function: helloworld() in ....
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=31582&edit=1