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/documentfragment.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/documentfragment.c')
-rw-r--r-- | ext/dom/documentfragment.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dom/documentfragment.c b/ext/dom/documentfragment.c index d47fd725e6..14f761df89 100644 --- a/ext/dom/documentfragment.c +++ b/ext/dom/documentfragment.c @@ -29,7 +29,7 @@ /* -* class domdocumentfragment extends domnode +* class DOMDocumentFragment extends DOMNode * * URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-B63ED1A3 * Since: @@ -40,7 +40,7 @@ zend_function_entry php_dom_documentfragment_class_functions[] = { {NULL, NULL, NULL} }; -/* {{{ proto void DomDocumentFragment::__construct(); */ +/* {{{ proto void DOMDocumentFragment::__construct(); */ PHP_METHOD(domdocumentfragment, __construct) { @@ -72,5 +72,5 @@ PHP_METHOD(domdocumentfragment, __construct) php_libxml_increment_node_ptr((php_libxml_node_object *)intern, nodep, (void *)intern TSRMLS_CC); } } -/* }}} end DomDocumentFragment::__construct */ +/* }}} end DOMDocumentFragment::__construct */ #endif |