From 421e2e9275809dfca38a260fbb4c26bff5f849d3 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Thu, 4 Sep 2003 14:54:53 +0000 Subject: Go with the mess --- ext/sqlite/sqlite.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/sqlite/sqlite.c') 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} }; -- cgit v1.2.1