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/domimplementation.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/domimplementation.c')
-rw-r--r-- | ext/dom/domimplementation.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/ext/dom/domimplementation.c b/ext/dom/domimplementation.c index c38ca3174b..5669bca3d4 100644 --- a/ext/dom/domimplementation.c +++ b/ext/dom/domimplementation.c @@ -28,7 +28,7 @@ #include "php_dom.h" /* -* class domimplementation +* class DOMImplementation * * URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-102161490 * Since: @@ -42,9 +42,6 @@ zend_function_entry php_dom_domimplementation_class_functions[] = { {NULL, NULL, NULL} }; -/* {{{ attribute protos, not implemented yet */ - - /* {{{ proto boolean dom_domimplementation_has_feature(string feature, string version); URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-5CED94D7 Since: @@ -67,7 +64,7 @@ PHP_METHOD(domimplementation, hasFeature) /* }}} end dom_domimplementation_has_feature */ -/* {{{ proto domdocumenttype dom_domimplementation_create_document_type(string qualifiedName, string publicId, string systemId); +/* {{{ proto DOMDocumentType dom_domimplementation_create_document_type(string qualifiedName, string publicId, string systemId); URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocType Since: DOM Level 2 */ @@ -121,7 +118,7 @@ PHP_METHOD(domimplementation, createDocumentType) /* }}} end dom_domimplementation_create_document_type */ -/* {{{ proto domdocument dom_domimplementation_create_document(string namespaceURI, string qualifiedName, documenttype doctype); +/* {{{ proto DOMDocument dom_domimplementation_create_document(string namespaceURI, string qualifiedName, DOMDocumentType doctype); URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Level-2-Core-DOM-createDocument Since: DOM Level 2 */ @@ -224,7 +221,7 @@ PHP_METHOD(domimplementation, createDocument) /* }}} end dom_domimplementation_create_document */ -/* {{{ proto domnode dom_domimplementation_get_feature(string feature, string version); +/* {{{ proto DOMNode dom_domimplementation_get_feature(string feature, string version); URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#DOMImplementation3-getFeature Since: DOM Level 3 */ |