From: Rob Richards Date: Thu, 24 Sep 2009 13:18:22 +0000 (+0000) Subject: Fixed bug #49647 (DOMUserData does not exist) X-Git-Tag: php-5.3.2RC1~448 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3d66dbfedc5e99f9c1fbcffa97b78f904d0cbf7;p=php Fixed bug #49647 (DOMUserData does not exist) --- diff --git a/NEWS b/NEWS index 7c23c632e5..74ac10ccff 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,7 @@ PHP NEWS - Implemented FR #49253 (added support for libcurl's CERTINFO option). (Linus Nielsen Feltzing ) +- Fixed bug #49647 (DOMUserData does not exist). (Rob) - Fixed bug #49630 (imap_listscan function missing). (Felipe) - Fixed bug #49531 (CURLOPT_INFILESIZE sometimes causes warning "CURLPROTO_FILE cannot be set"). (Felipe) diff --git a/ext/dom/node.c b/ext/dom/node.c index bdb3c6cb8e..65b343d1b9 100644 --- a/ext/dom/node.c +++ b/ext/dom/node.c @@ -1730,7 +1730,7 @@ PHP_FUNCTION(dom_node_get_feature) } /* }}} end dom_node_get_feature */ -/* {{{ proto DomUserData dom_node_set_user_data(string key, DomUserData data, userdatahandler handler); +/* {{{ proto mixed dom_node_set_user_data(string key, mixed data, userdatahandler handler); URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-setUserData Since: DOM Level 3 */ @@ -1740,7 +1740,7 @@ PHP_FUNCTION(dom_node_set_user_data) } /* }}} end dom_node_set_user_data */ -/* {{{ proto DomUserData dom_node_get_user_data(string key); +/* {{{ proto mixed dom_node_get_user_data(string key); URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Node3-getUserData Since: DOM Level 3 */