diff options
author | Rob Richards <rrichards@php.net> | 2012-09-20 02:34:07 -0400 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2012-09-20 02:34:07 -0400 |
commit | ffa72707c86750816f665656c02a0a0451300296 (patch) | |
tree | 5dd68451e63d8b732d04fed5be81679c97020991 /ext/dom/domerrorhandler.c | |
parent | dd6b7ea7bd31ec3253004901285ae0d191974c6e (diff) | |
download | php-git-ffa72707c86750816f665656c02a0a0451300296.tar.gz |
fix bug #63015 (Incorrect arginfo for DOMErrorHandler)
Diffstat (limited to 'ext/dom/domerrorhandler.c')
-rw-r--r-- | ext/dom/domerrorhandler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dom/domerrorhandler.c b/ext/dom/domerrorhandler.c index f1ab2871a8..e282f30146 100644 --- a/ext/dom/domerrorhandler.c +++ b/ext/dom/domerrorhandler.c @@ -29,7 +29,7 @@ /* {{{ arginfo */ ZEND_BEGIN_ARG_INFO_EX(arginfo_dom_domerrorhandler_handle_error, 0, 0, 1) - ZEND_ARG_OBJ_INFO(0, error, DOMError, 0) + ZEND_ARG_OBJ_INFO(0, error, DOMDomError, 0) ZEND_END_ARG_INFO(); /* }}} */ |