diff options
author | Rob Richards <rrichards@php.net> | 2004-11-18 19:54:30 +0000 |
---|---|---|
committer | Rob Richards <rrichards@php.net> | 2004-11-18 19:54:30 +0000 |
commit | b87d8cdfd09639f307ed531f268a9e28d83adbdf (patch) | |
tree | b3586d855254f8c99a1e42673deb6dc3261a85c8 /ext/dom/entity.c | |
parent | 1e0212ef8e4b7901d563e3cdd143b039b8517a8b (diff) | |
download | php-git-b87d8cdfd09639f307ed531f268a9e28d83adbdf.tar.gz |
prototype fixes (Jakub Vrána)
Diffstat (limited to 'ext/dom/entity.c')
-rw-r--r-- | ext/dom/entity.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/dom/entity.c b/ext/dom/entity.c index 6da6b4e959..f5da4cca6b 100644 --- a/ext/dom/entity.c +++ b/ext/dom/entity.c @@ -39,7 +39,7 @@ zend_function_entry php_dom_entity_class_functions[] = { {NULL, NULL, NULL} }; -/* {{{ proto publicId string +/* {{{ publicId string readonly=yes URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-D7303025 Since: @@ -69,7 +69,7 @@ int dom_entity_public_id_read(dom_object *obj, zval **retval TSRMLS_DC) -/* {{{ proto systemId string +/* {{{ systemId string readonly=yes URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-D7C29F3E Since: @@ -99,7 +99,7 @@ int dom_entity_system_id_read(dom_object *obj, zval **retval TSRMLS_DC) -/* {{{ proto notationName string +/* {{{ notationName string readonly=yes URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#ID-6ABAEB38 Since: @@ -132,7 +132,7 @@ int dom_entity_notation_name_read(dom_object *obj, zval **retval TSRMLS_DC) -/* {{{ proto actualEncoding string +/* {{{ actualEncoding string readonly=no URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Entity3-actualEncoding Since: DOM Level 3 @@ -153,7 +153,7 @@ int dom_entity_actual_encoding_write(dom_object *obj, zval *newval TSRMLS_DC) -/* {{{ proto encoding string +/* {{{ encoding string readonly=no URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Entity3-encoding Since: DOM Level 3 @@ -174,7 +174,7 @@ int dom_entity_encoding_write(dom_object *obj, zval *newval TSRMLS_DC) -/* {{{ proto version string +/* {{{ version string readonly=no URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#Entity3-version Since: DOM Level 3 |