summaryrefslogtreecommitdiff
path: root/ext/dom/nodelist.c
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2004-05-31 12:50:28 +0000
committerRob Richards <rrichards@php.net>2004-05-31 12:50:28 +0000
commit5b0f34ae80f8d20de3bc16bba8c2d738d83e0018 (patch)
tree7627d3cc33fd1431865136b6a2d12f0e768a23e6 /ext/dom/nodelist.c
parent7d04465b7464f13dd01f3aec37efd9e136af16c1 (diff)
downloadphp-git-5b0f34ae80f8d20de3bc16bba8c2d738d83e0018.tar.gz
Fix bug #28584: DOMText::splitText() does not split text properly (benjcarson)
Prototype fixes
Diffstat (limited to 'ext/dom/nodelist.c')
-rw-r--r--ext/dom/nodelist.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/ext/dom/nodelist.c b/ext/dom/nodelist.c
index 10a7b6671d..72c388fc01 100644
--- a/ext/dom/nodelist.c
+++ b/ext/dom/nodelist.c
@@ -29,7 +29,7 @@
/*
-* class domnodelist
+* class DOMNodeList
*
* URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-536297177
* Since:
@@ -40,9 +40,7 @@ zend_function_entry php_dom_nodelist_class_functions[] = {
{NULL, NULL, NULL}
};
-/* {{{ attribute protos, not implemented yet */
-
-/* {{{ proto length unsigned long
+/* {{{ proto length int
readonly=yes
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-203510337
Since:
@@ -95,7 +93,7 @@ int dom_nodelist_length_read(dom_object *obj, zval **retval TSRMLS_DC)
/* }}} */
-/* {{{ proto domnode dom_nodelist_item(unsigned long index);
+/* {{{ proto DOMNode dom_nodelist_item(int index);
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-844377136
Since:
*/