From 8775bead3acf436e2f5da6049ef21d64c77d9f82 Mon Sep 17 00:00:00 2001 From: Jon Allen Date: Mon, 29 Oct 2018 14:44:37 +0100 Subject: fix bug #77079 --- ext/odbc/php_odbc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/odbc') diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index be46caf315..643feabf27 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -1845,7 +1845,7 @@ static void php_odbc_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type) /* }}} */ -/* {{{ proto object odbc_fetch_object(int result [, int rownumber]) +/* {{{ proto object odbc_fetch_object(resource result [, int rownumber]) Fetch a result row as an object */ PHP_FUNCTION(odbc_fetch_object) { @@ -1856,7 +1856,7 @@ PHP_FUNCTION(odbc_fetch_object) } /* }}} */ -/* {{{ proto array odbc_fetch_array(int result [, int rownumber]) +/* {{{ proto array odbc_fetch_array(resource result [, int rownumber]) Fetch a result row as an associative array */ PHP_FUNCTION(odbc_fetch_array) { -- cgit v1.2.1