summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-31 18:42:41 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-31 18:42:41 +0000
commit0597e322ceda5300e871f15f1a4ff31317fac66c (patch)
tree617dedc2265c3888a6ac6bf9de922a94d768d49d
parent6c9b682bb61d41e91d209903b9008093b88e056b (diff)
downloadbrdo-0597e322ceda5300e871f15f1a4ff31317fac66c.tar.gz
brdo-0597e322ceda5300e871f15f1a4ff31317fac66c.tar.bz2
- Patch #700518 by agentrickard: document conjunctions for db_condition().
-rw-r--r--includes/database/query.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/database/query.inc b/includes/database/query.inc
index 367870019..ce8dc152c 100644
--- a/includes/database/query.inc
+++ b/includes/database/query.inc
@@ -1386,8 +1386,10 @@ function db_xor() {
/**
* Returns a new DatabaseCondition, set to the specified conjunction.
*
- * @param
- * The conjunction (AND, OR, XOR, etc.) to use on conditions.
+ * @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.
* @return DatabaseCondition
*/
function db_condition($conjunction) {