From: Daniela Mariaschi Date: Mon, 16 Jun 2003 10:47:35 +0000 (+0000) Subject: proto fixes ibase_rollback and ibase_commit X-Git-Tag: php-4.3.3RC1~35 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe437297074be824e2bdc3bfbbbe8451efa32aab;p=php proto fixes ibase_rollback and ibase_commit --- diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index bb54bf57d2..3b9d776ca9 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -1678,7 +1678,7 @@ static void _php_ibase_trans_end(INTERNAL_FUNCTION_PARAMETERS, int commit) } /* }}} */ -/* {{{ proto bool ibase_commit([resource link_identifier [, int trans_number]]) +/* {{{ proto bool ibase_commit(resource link_identifier) Commit transaction */ PHP_FUNCTION(ibase_commit) { @@ -1686,8 +1686,8 @@ PHP_FUNCTION(ibase_commit) } /* }}} */ -/* {{{ proto bool ibase_rollback([resource link_identifier [, int trans_number]]) - Roolback transaction */ +/* {{{ proto bool ibase_rollback(resource link_identifier) + Rollback transaction */ PHP_FUNCTION(ibase_rollback) { _php_ibase_trans_end(INTERNAL_FUNCTION_PARAM_PASSTHRU, ROLLBACK);