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

index bb54bf57d236f1f82c936fd794d3238a3c43981f..3b9d776ca99771302fe8152e8051c44d3d771046 100644 (file)
@@ -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);