From: Marcus Boerger Date: Fri, 17 Oct 2003 08:01:49 +0000 (+0000) Subject: pre/hasprev have nothing to do with iteration X-Git-Tag: RELEASE_1_3b3~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4943cae9262953de09ca2bab25f3b12978d9a910;p=php pre/hasprev have nothing to do with iteration --- diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index e33c22c153..267952aaf0 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -225,12 +225,12 @@ function_entry sqlite_funcs_query[] = { /* spl_forward */ PHP_ME_MAPPING(current, sqlite_current, NULL) PHP_ME_MAPPING(next, sqlite_next, NULL) - PHP_ME_MAPPING(prev, sqlite_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 */ + PHP_ME_MAPPING(prev, sqlite_prev, NULL) + PHP_ME_MAPPING(hasprev, sqlite_has_prev, NULL) PHP_ME_MAPPING(num_rows, sqlite_num_rows, NULL) PHP_ME_MAPPING(seek, sqlite_seek, NULL) {NULL, NULL, NULL}