diff options
author | Marcus Boerger <helly@php.net> | 2003-09-04 14:54:53 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-09-04 14:54:53 +0000 |
commit | 421e2e9275809dfca38a260fbb4c26bff5f849d3 (patch) | |
tree | ec4f167d33e653d90369f44aeaa084ee78b45cd2 /ext/sqlite/sqlite.c | |
parent | 0f91d8a4f6508f8885a82f7f713a9a3770d6462d (diff) | |
download | php-git-421e2e9275809dfca38a260fbb4c26bff5f849d3.tar.gz |
Go with the mess
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 85e3f6691e..c5233a2941 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -226,8 +226,8 @@ function_entry sqlite_funcs_query[] = { PHP_ME_MAPPING(current, sqlite_current, NULL) PHP_ME_MAPPING(next, sqlite_next, NULL) PHP_ME_MAPPING(prev, sqlite_prev, NULL) - PHP_ME_MAPPING(has_more, sqlite_has_more, NULL) - PHP_ME_MAPPING(has_prev, sqlite_has_prev, NULL) + PHP_ME_MAPPING(hasmore, sqlite_has_more, NULL) + PHP_ME_MAPPING(hasprev, sqlite_has_prev, NULL) /* spl_sequence */ PHP_ME_MAPPING(rewind, sqlite_rewind, NULL) /* additional */ @@ -248,7 +248,7 @@ function_entry sqlite_funcs_ub_query[] = { /* spl_forward */ PHP_ME_MAPPING(current, sqlite_current, NULL) PHP_ME_MAPPING(next, sqlite_next, NULL) - PHP_ME_MAPPING(has_more, sqlite_has_more, NULL) + PHP_ME_MAPPING(hasmore, sqlite_has_more, NULL) {NULL, NULL, NULL} }; |