From: Daniela Mariaschi Date: Mon, 16 Jun 2003 10:41:42 +0000 (+0000) Subject: proto fixes ibase_rollback and ibase_commit X-Git-Tag: RELEASE_1_0_2~202 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e53733739810f144b20b6b2312f4c703b0a003fb;p=php proto fixes ibase_rollback and ibase_commit --- diff --git a/ext/interbase/interbase.c b/ext/interbase/interbase.c index c5ed85cdb9..86a52e4c35 100644 --- a/ext/interbase/interbase.c +++ b/ext/interbase/interbase.c @@ -1674,7 +1674,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) { @@ -1682,8 +1682,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);