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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-14 07:39:21 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-14 07:39:21 +0400
commit33321518591ade27e1651bf3e912d6bdecb7f342 (patch)
treeee0a53b563ed0f641dd90faccadf2bbda26ec2e0 /db_datadict.php
parente6626004155fbf2932c36e84bc3c251b2a76dce3 (diff)
Fix Checkstyle Warnings - Type: CloseBracketLine (Closing parenthesis of a multi-line function call must be on a line by itself)
Diffstat (limited to 'db_datadict.php')
-rw-r--r--db_datadict.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/db_datadict.php b/db_datadict.php
index caf5e1da17..b7a253255f 100644
--- a/db_datadict.php
+++ b/db_datadict.php
@@ -126,7 +126,8 @@ foreach ($tables as $table) {
$show_create_table = PMA_DBI_fetch_value(
'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),
- 0, 1);
+ 0, 1
+ );
$analyzed_sql = PMA_SQP_analyze(PMA_SQP_parse($show_create_table));
}