diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-02-06 19:01:38 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-02-06 19:01:38 +0000 |
commit | 88cc7138379302f8584785a05ba11f0a9ac83247 (patch) | |
tree | ffd632cf6d46b9ea02098db7630c53199b396dd5 /includes/database | |
parent | 55687e5d7c02d7ae7c6fd50491f631ba537907f1 (diff) | |
download | brdo-88cc7138379302f8584785a05ba11f0a9ac83247.tar.gz brdo-88cc7138379302f8584785a05ba11f0a9ac83247.tar.bz2 |
- Patch #700518 by agentrickard, Crell: documentation fixes.
Diffstat (limited to 'includes/database')
-rw-r--r-- | includes/database/query.inc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/includes/database/query.inc b/includes/database/query.inc index ce8dc152c..0b03783f5 100644 --- a/includes/database/query.inc +++ b/includes/database/query.inc @@ -1386,10 +1386,11 @@ function db_xor() { /** * Returns a new DatabaseCondition, set to the specified conjunction. * + * Internal API function call. The db_and(), db_or(), and db_xor() + * functions are preferred. + * * @param $conjunction - * The conjunction to use for query conditions. The following conjunctions are - * supported: AND, OR, XOR, IN, NOT IN, BETWEEN, IS NULL, IS NOT NULL, - * LIKE. + * The conjunction to use for query conditions (AND, OR or XOR). * @return DatabaseCondition */ function db_condition($conjunction) { |