summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-03-15 18:22:57 +0000
committerDerick Rethans <derick@php.net>2002-03-15 18:22:57 +0000
commit108448f37ad3938508cae082771af0e76e155986 (patch)
treef76827df6633554a2f80413c43da78c1eb9ddc8e
parent12bc95432a0c9514643f60a8b5c84045d875d77a (diff)
downloadphp-git-108448f37ad3938508cae082771af0e76e155986.tar.gz
- proto fixes
-rw-r--r--ext/domxml/php_domxml.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c
index 0963ad8ad0..0fafbc61d9 100644
--- a/ext/domxml/php_domxml.c
+++ b/ext/domxml/php_domxml.c
@@ -2817,7 +2817,7 @@ PHP_FUNCTION(domxml_intdtd)
}
/* }}} */
-/* {{{ proto string domxml_dump_mem([object doc_handle[,int format] ])
+/* {{{ proto string domxml_dump_mem(object doc_handle [, int format])
Dumps document into string and optionally formats it */
PHP_FUNCTION(domxml_dump_mem)
{
@@ -2827,7 +2827,7 @@ PHP_FUNCTION(domxml_dump_mem)
int format = 0;
int size;
- DOMXML_PARAM_ONE(docp, id, le_domxmldocp,"|l",&format);
+ DOMXML_PARAM_ONE(docp, id, le_domxmldocp,"|l", &format);
if (format) {
xmlKeepBlanksDefault(0);
xmlDocDumpFormatMemory(docp, &mem, &size, format);
@@ -2842,7 +2842,7 @@ PHP_FUNCTION(domxml_dump_mem)
}
/* }}} */
-/* {{{ proto int domxml_dump_mem_file([object doc_handle],filename,compressmode)
+/* {{{ proto int domxml_dump_mem_file(object doc_handle [, int filename [, int compressmode]])
Dumps document into file and uses compression if specified
Returns false on error, otherwise the length of the xml-document (uncompressed)
*/
@@ -2872,7 +2872,7 @@ PHP_FUNCTION(domxml_dump_mem_file)
}
/* }}} */
-/* {{{ proto string domxml_dump_node([object doc_handle],object node_handle[,int format[,int level]])
+/* {{{ proto string domxml_dump_node(object doc_handle, object node_handle [, int format [, int level]])
Dumps node into string */
PHP_FUNCTION(domxml_dump_node)
{