]> granicus.if.org Git - php/commitdiff
proto fixes ibase_rollback and ibase_commit
authorDaniela Mariaschi <daniela@php.net>
Mon, 16 Jun 2003 10:41:42 +0000 (10:41 +0000)
committerDaniela Mariaschi <daniela@php.net>
Mon, 16 Jun 2003 10:41:42 +0000 (10:41 +0000)
ext/interbase/interbase.c

index c5ed85cdb93aeb3bf41583a1fa9c85ded0ad02fd..86a52e4c3594a7fd948e3c44feb83321ec66c189 100644 (file)
@@ -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);