From 620d56fc95d36854b98d5856e4f2e870c23168c0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 19 Aug 2009 18:28:59 +0000 Subject: [PATCH] fix up doc comment on Database::buildConcat() --- includes/db/Database.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 26216039de..3826222338 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -2210,9 +2210,11 @@ abstract class DatabaseBase { return $this->indexName( $matches[1] ); } - /* + /** * Build a concatenation list to feed into a SQL query - */ + * @param $stringList Array: list of raw SQL expressions; caller is responsible for any quoting + * @return String + */ function buildConcat( $stringList ) { return 'CONCAT(' . implode( ',', $stringList ) . ')'; } -- 2.20.1