diff options
author | Rob Richards <rrichards@php.net> | 2004-05-31 12:50:28 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2004-05-31 12:50:28 +0000 |
commit | 5b0f34ae80f8d20de3bc16bba8c2d738d83e0018 (patch) | |
tree | 7627d3cc33fd1431865136b6a2d12f0e768a23e6 /ext/dom/xpath.c | |
parent | 7d04465b7464f13dd01f3aec37efd9e136af16c1 (diff) | |
download | php-git-5b0f34ae80f8d20de3bc16bba8c2d738d83e0018.tar.gz |
Fix bug #28584: DOMText::splitText() does not split text properly (benjcarson)
Prototype fixes
Diffstat (limited to 'ext/dom/xpath.c')
-rw-r--r-- | ext/dom/xpath.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/dom/xpath.c b/ext/dom/xpath.c index 9f0f59cc0d..6a43d75f18 100644 --- a/ext/dom/xpath.c +++ b/ext/dom/xpath.c @@ -29,7 +29,7 @@ /* -* class domxpath +* class DOMXPath */ #if defined(LIBXML_XPATH_ENABLED) @@ -41,7 +41,7 @@ zend_function_entry php_dom_xpath_class_functions[] = { {NULL, NULL, NULL} }; -/* {{{ proto void DomXPath::__construct(domDocument doc); */ +/* {{{ proto void DOMXPath::__construct(DOMDocument doc); */ PHP_METHOD(domxpath, __construct) { zval *id, *doc; @@ -76,9 +76,9 @@ PHP_METHOD(domxpath, __construct) php_libxml_increment_doc_ref((php_libxml_node_object *)intern, docp TSRMLS_CC); } } -/* }}} end DomXPath::__construct */ +/* }}} end DOMXPath::__construct */ -/* {{{ proto domdocument document document */ +/* {{{ proto document DOMDocument*/ int dom_xpath_document_read(dom_object *obj, zval **retval TSRMLS_DC) { xmlDoc *docp = NULL; @@ -136,7 +136,7 @@ static void dom_xpath_iter(zval *baseobj, dom_object *intern) } -/* {{{ proto domnodelist dom_xpath_query(string expr [,domNode context]); */ +/* {{{ proto DOMNodeList dom_xpath_query(string expr [,DOMNode context]); */ PHP_FUNCTION(dom_xpath_query) { zval *id, *retval, *context = NULL; |