From: Brion Vibber Date: Wed, 19 Aug 2009 18:28:59 +0000 (+0000) Subject: fix up doc comment on Database::buildConcat() X-Git-Tag: 1.31.0-rc.0~40198 X-Git-Url: https://git.cyclocoop.org/%7B%7B%20url_for%28%27votes%27%2C%20votes=%27waiting%27%29%20%7D%7D?a=commitdiff_plain;h=620d56fc95d36854b98d5856e4f2e870c23168c0;p=lhc%2Fweb%2Fwiklou.git fix up doc comment on Database::buildConcat() --- 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 ) . ')'; }