diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-04-24 23:03:48 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-04-24 23:03:48 +0000 |
commit | 48ea7057e4719a116f6f2d35e7f38941c09e9a02 (patch) | |
tree | 04905b7291ba4c69a1be2a4f98411ddceb9e8ccd /ext/pgsql/pgsql.c | |
parent | cf7f465ef92c37da36ee5607e284728e5312b9e9 (diff) | |
download | php-git-48ea7057e4719a116f6f2d35e7f38941c09e9a02.tar.gz |
Remove result_type from pg_fetch_object() proto.
It still accepts 3rd argument, but passing 3rd argument
does not make sense for pg_fetch_object().
Diffstat (limited to 'ext/pgsql/pgsql.c')
-rw-r--r-- | ext/pgsql/pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/pgsql.c b/ext/pgsql/pgsql.c index e350af9f77..94b404cca1 100644 --- a/ext/pgsql/pgsql.c +++ b/ext/pgsql/pgsql.c @@ -1343,7 +1343,7 @@ PHP_FUNCTION(pg_fetch_array) } /* }}} */ -/* {{{ proto object pg_fetch_object(resource result [, int row [, int result_type]]) +/* {{{ proto object pg_fetch_object(resource result [, int row]) Fetch a row as an object */ PHP_FUNCTION(pg_fetch_object) { |