]> granicus.if.org Git - php/commitdiff
Fixed bug #49647 (DOMUserData does not exist)
authorRob Richards <rrichards@php.net>
Thu, 24 Sep 2009 13:18:22 +0000 (13:18 +0000)
committerRob Richards <rrichards@php.net>
Thu, 24 Sep 2009 13:18:22 +0000 (13:18 +0000)
NEWS
ext/dom/node.c

diff --git a/NEWS b/NEWS
index 7c23c632e5b295659b5b7fd15f05c2423cb9dd43..74ac10ccff111aa359a463c69380bd0d3b17fad1 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ PHP                                                                        NEWS
 - Implemented FR #49253 (added support for libcurl's CERTINFO option).
   (Linus Nielsen Feltzing <linus@haxx.se>)
   
+- 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)
index bdb3c6cb8eb5db8d7ddfb27d1ea00f5cb645bcb8..65b343d1b9a7d01b003fe07a448726a12f3b0823 100644 (file)
@@ -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
 */