Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Peccatte <hugues.peccatte@gmail.com>2014-11-02 16:04:31 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2014-11-02 16:04:35 +0300
commit037a034b437b493b05d98231aff3dc0eb17d459a (patch)
tree07a90b931e2cc644d0b1f21bdd2fc93bd3383563 /db_sql_autocomplete.php
parent4139575bbcf0cc042edad8069be63dcb715041ba (diff)
Minor coding style modifications.
Fix typos. PHPDoc and JSDoc updates. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'db_sql_autocomplete.php')
-rw-r--r--db_sql_autocomplete.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/db_sql_autocomplete.php b/db_sql_autocomplete.php
index 48cf3d884c..3701627e0b 100644
--- a/db_sql_autocomplete.php
+++ b/db_sql_autocomplete.php
@@ -14,7 +14,9 @@ $sql_autocomplete = array();
if ($db) {
$tableNames = $GLOBALS['dbi']->getTables($db);
foreach ($tableNames as $tableName) {
- $sql_autocomplete[$tableName] = $GLOBALS['dbi']->getColumnNames($db, $tableName);
+ $sql_autocomplete[$tableName] = $GLOBALS['dbi']->getColumnNames(
+ $db, $tableName
+ );
}
}