diff options
author | Georg Richter <georg@php.net> | 2003-02-12 21:07:28 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2003-02-12 21:07:28 +0000 |
commit | ef086ad82db148867913894bc66ca4990b11151a (patch) | |
tree | 49a749b951716cd0d62f96eb0b3f0c7896c563c1 /ext | |
parent | 24a86f206484547537c31fa6d8d172201501ab21 (diff) | |
download | php-git-ef086ad82db148867913894bc66ca4990b11151a.tar.gz |
changed function entries for statements
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mysqli/mysqli_fe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mysqli/mysqli_fe.c b/ext/mysqli/mysqli_fe.c index ac6aa05410..7c4f524d04 100644 --- a/ext/mysqli/mysqli_fe.c +++ b/ext/mysqli/mysqli_fe.c @@ -209,9 +209,9 @@ function_entry mysqli_stmt_methods[] = { PHP_FALIAS(fetch,mysqli_fetch,NULL) PHP_FALIAS(param_count,mysqli_param_count,NULL) PHP_FALIAS(send_long_data,mysqli_send_long_data,NULL) - PHP_FALIAS(stmt_close,mysqli_stmt_close,NULL) - PHP_FALIAS(stmt_errno,mysqli_stmt_errno,NULL) - PHP_FALIAS(stnt_error,mysqli_stmt_error,NULL) + PHP_FALIAS(close,mysqli_stmt_close,NULL) + PHP_FALIAS(errno,mysqli_stmt_errno,NULL) + PHP_FALIAS(error,mysqli_stmt_error,NULL) {NULL, NULL, NULL} }; /* }}} */ |