diff options
author | Marcus Boerger <helly@php.net> | 2004-03-08 17:33:31 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-03-08 17:33:31 +0000 |
commit | b6b7c9eb6521f75955e285036e901a6b11ec86b5 (patch) | |
tree | 973bf6a45c6d14a1d7623ec92916c8ad226f2d84 /ext/sqlite/sqlite.c | |
parent | c3b06ea21e12981f02f4da2ac0cb5d2499ff4bb5 (diff) | |
download | php-git-b6b7c9eb6521f75955e285036e901a6b11ec86b5.tar.gz |
Rename hasMore() to valid() as discussed. (Part I)
Diffstat (limited to 'ext/sqlite/sqlite.c')
-rw-r--r-- | ext/sqlite/sqlite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index 89235687cf..2903e4688d 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -217,7 +217,7 @@ function_entry sqlite_funcs_query[] = { /* spl_forward */ PHP_ME_MAPPING(current, sqlite_current, NULL) PHP_ME_MAPPING(next, sqlite_next, NULL) - PHP_ME_MAPPING(hasmore, sqlite_has_more, NULL) + PHP_ME_MAPPING(valid, sqlite_has_more, NULL) /* spl_sequence */ PHP_ME_MAPPING(rewind, sqlite_rewind, NULL) /* additional */ @@ -239,7 +239,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(hasmore, sqlite_has_more, NULL) + PHP_ME_MAPPING(valid, sqlite_has_more, NULL) {NULL, NULL, NULL} }; |