diff options
| author | Andrey Hristov <andrey@php.net> | 2003-06-13 14:59:01 +0000 |
|---|---|---|
| committer | Andrey Hristov <andrey@php.net> | 2003-06-13 14:59:01 +0000 |
| commit | ab5b9b91d3e21ded45035da4014d94c32c5d0f42 (patch) | |
| tree | 6b1b47e38d6b4154f184ea74fced6fac271270d9 | |
| parent | de6c599504cf4984ceb971050f44eb16269d1067 (diff) | |
| download | php-git-ab5b9b91d3e21ded45035da4014d94c32c5d0f42.tar.gz | |
proto fixes
| -rw-r--r-- | ext/dba/dba.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dba/dba.c b/ext/dba/dba.c index 9eb92ac1da..f3b1cc4ae9 100644 --- a/ext/dba/dba.c +++ b/ext/dba/dba.c @@ -788,7 +788,7 @@ static void php_dba_open(INTERNAL_FUNCTION_PARAMETERS, int persistent) /* }}} */ #undef FREENOW -/* {{{ proto int dba_popen(string path, string mode [, string handlername, string ...]) +/* {{{ proto resource dba_popen(string path, string mode [, string handlername, string ...]) Opens path using the specified handler in mode persistently */ PHP_FUNCTION(dba_popen) { @@ -796,7 +796,7 @@ PHP_FUNCTION(dba_popen) } /* }}} */ -/* {{{ proto int dba_open(string path, string mode [, string handlername, string ...]) +/* {{{ proto resource dba_open(string path, string mode [, string handlername, string ...]) Opens path using the specified handler in mode*/ PHP_FUNCTION(dba_open) { |
