summaryrefslogtreecommitdiff
path: root/ext/sqlite/sqlite.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r--ext/sqlite/sqlite.c6
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}
};