MFB51: Fixed parameter parsing for setIndent() method.

This commit is contained in:
Ilia Alshanetsky 2005-12-17 20:05:21 +00:00
parent bc2ed13110
commit 23005e96f1

View file

@ -366,7 +366,7 @@ PHP_FUNCTION(xmlwriter_set_indent)
zval *this = getThis();
if (this) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &pind, &indent) == FAILURE) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &indent) == FAILURE) {
return;
}
XMLWRITER_FROM_OBJECT(intern, this);