diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-15 17:55:18 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-15 17:55:18 +0000 |
commit | a136ab56c4b1d40a638a146b9c78a9f112f85b06 (patch) | |
tree | bc181676a6fbb82e90a8b27dc9196cbf29300cbc /modules/field/field.module | |
parent | 6310a1a8f2ed5d52f1b46c06f3d8a69f97647b4e (diff) | |
download | brdo-a136ab56c4b1d40a638a146b9c78a9f112f85b06.tar.gz brdo-a136ab56c4b1d40a638a146b9c78a9f112f85b06.tar.bz2 |
- Patch #512236 by yched, bjaspan: design flaw in field_attach_query(), follow-up patch with bugfixes and tests.
Diffstat (limited to 'modules/field/field.module')
-rw-r--r-- | modules/field/field.module | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/modules/field/field.module b/modules/field/field.module index 9b8ddbead..1396e2283 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -100,14 +100,10 @@ define('FIELD_LOAD_REVISION', 'FIELD_LOAD_REVISION'); define('FIELD_QUERY_NO_LIMIT', 'FIELD_QUERY_NO_LIMIT'); /** - * Result format argument for field_attach_query(). + * Cursor return value for field_attach_query() to indicate that no + * more data is available. */ -define('FIELD_QUERY_RETURN_VALUES', 'FIELD_QUERY_RETURN_VALUES'); - -/** - * Result format argument for field_attach_query(). - */ -define('FIELD_QUERY_RETURN_IDS', 'FIELD_QUERY_RETURN_IDS'); +define('FIELD_QUERY_COMPLETE', 'FIELD_QUERY_COMPLETE'); /** * @} End of "Field query flags". |