From: Derick Rethans Date: Wed, 8 Jun 2011 12:28:48 +0000 (+0100) Subject: - The parse parameters line was wrong, it still had the extra one that was X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=1b96539ecb069fb3ff20a0c5a819815b6c18a4bf;p=konrad%2Ftwig.git - The parse parameters line was wrong, it still had the extra one that was removed in Twig itself already. --- diff --git a/twig.c b/twig.c index aa92723..838c53a 100644 --- a/twig.c +++ b/twig.c @@ -230,7 +230,7 @@ PHP_FUNCTION(twig_template_get_attributes) int type_len = 0; zend_bool isDefinedTest = 0; - if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ozzasbl", &template, &object, &item, &arguments, &type, &type_len, &isDefinedTest) == FAILURE) { + if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ozzasb", &template, &object, &item, &arguments, &type, &type_len, &isDefinedTest) == FAILURE) { return; }