helly Wed Nov 3 16:18:47 2004 EDT
Modified files:
/ZendEngine2 zend_reflection_api.c
Log:
- Trying to invoke function not methot here
http://cvs.php.net/diff.php/ZendEngine2/zend_reflection_api.c?r1=1.137&r2=1.138&ty=u
Index: ZendEngine2/zend_reflection_api.c
diff -u ZendEngine2/zend_reflection_api.c:1.137
ZendEngine2/zend_reflection_api.c:1.138
--- ZendEngine2/zend_reflection_api.c:1.137 Wed Nov 3 16:11:48 2004
+++ ZendEngine2/zend_reflection_api.c Wed Nov 3 16:18:44 2004
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_reflection_api.c,v 1.137 2004/11/03 21:11:48 helly Exp $ */
+/* $Id: zend_reflection_api.c,v 1.138 2004/11/03 21:18:44 helly Exp $ */
#include "zend.h"
#include "zend_API.h"
#include "zend_exceptions.h"
@@ -1380,7 +1380,7 @@
if (result == FAILURE) {
zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
- "Invocation of method %s() failed",
fptr->common.function_name);
+ "Invocation of function %s() failed",
fptr->common.function_name);
return;
}
@@ -1444,7 +1444,7 @@
if (result == FAILURE) {
zend_throw_exception_ex(reflection_exception_ptr, 0 TSRMLS_CC,
- "Invokation of method %s() failed",
fptr->common.function_name);
+ "Invocation of function %s() failed",
fptr->common.function_name);
return;
}
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|