Hello Dmitry,
Thursday, November 3, 2005, 1:01:18 PM, you wrote:
> Hi Marcus,
> This patch breaks some tests.
> Zend/tests/bug32290.phpt
This test is corrupt. It tries to use a non static function as a static
function. What we want here is:
-call_user_func_array(array("TestA","doSomething"), array($i));
+call_user_func_array(array($this, "TestA::doSomething"), array($i));
I have a patch for that which i will apply once 5.1.0 is out.
Right now i fixed the static checks.
> ext/sqlite/tests/sqlite_oo_030.phpt
I fixed what was causing trouble here and as a consequence we are now
detecting the error earlier so i also fixed the error.
> ext/standard/tests/tests/general_functions/bug32647.phpt
Fixed.
Thanks for noticing.
regards
marcus
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|