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/comment.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/comment.c')
-rw-r--r-- | ext/dom/comment.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dom/comment.c b/ext/dom/comment.c index be921a8fad..5b231cb098 100644 --- a/ext/dom/comment.c +++ b/ext/dom/comment.c @@ -29,7 +29,7 @@ /* -* class domcomment extends domcharacterdata +* class DOMComment extends DOMCharacterData * * URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-1728279322 * Since: @@ -40,7 +40,7 @@ zend_function_entry php_dom_comment_class_functions[] = { {NULL, NULL, NULL} }; -/* {{{ proto void DomComment::__construct([string value]); */ +/* {{{ proto void DOMComment::__construct([string value]); */ PHP_METHOD(domcomment, __construct) { @@ -73,5 +73,5 @@ PHP_METHOD(domcomment, __construct) php_libxml_increment_node_ptr((php_libxml_node_object *)intern, (xmlNodePtr)nodep, (void *)intern TSRMLS_CC); } } -/* }}} end DomComment::__construct */ +/* }}} end DOMComment::__construct */ #endif |