From: Rob Richards Date: Thu, 20 Sep 2012 06:34:07 +0000 (-0400) Subject: fix bug #63015 (Incorrect arginfo for DOMErrorHandler) X-Git-Tag: php-5.4.9RC1~30^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ffa72707c86750816f665656c02a0a0451300296;p=php fix bug #63015 (Incorrect arginfo for DOMErrorHandler) --- diff --git a/NEWS b/NEWS index 8fb3810268..0c57e0cda0 100644 --- a/NEWS +++ b/NEWS @@ -24,6 +24,9 @@ PHP NEWS . Fixed bug #60909 (custom error handler throwing Exception + fatal error = no shutdown function). (Dmitry) +- DOM: + . Fixed bug #63015 (Incorrect arginfo for DOMErrorHandler). (Rob) + - OpenSSL: . Implemented FR #61421 (OpenSSL signature verification missing RMD160, SHA224, SHA256, SHA384, SHA512). (Mark Jones) 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(); /* }}} */