From: Derick Rethans Date: Fri, 15 Mar 2002 18:22:57 +0000 (+0000) Subject: - proto fixes X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~1386 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=108448f37ad3938508cae082771af0e76e155986;p=php - proto fixes --- 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) {