summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2009-09-24 13:18:22 +0000
committerRob Richards <rrichards@php.net>2009-09-24 13:18:22 +0000
commitc3d66dbfedc5e99f9c1fbcffa97b78f904d0cbf7 (patch)
tree7a904011cdefceb2dba9ef9a786c2832b11fa1b7
parentc01b505a44a353ea79adc3762382037d8f6a6638 (diff)
downloadphp-git-c3d66dbfedc5e99f9c1fbcffa97b78f904d0cbf7.tar.gz
Fixed bug #49647 (DOMUserData does not exist)
-rw-r--r--NEWS1
-rw-r--r--ext/dom/node.c4
2 files changed, 3 insertions, 2 deletions
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 <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)
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
*/