logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

Re: cvs: ZendEngine2(PHP_5_1) / zend_API.c: msg#00015

Subject: Re: cvs: ZendEngine2(PHP_5_1) / zend_API.c
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




<Prev in Thread] Current Thread [Next in Thread>