diff options
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) { |