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-07-29 17:55:52 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-07-29 17:55:52 +0400
commit9a47688dc6b3fe185159a9d5afc7492e5a1e7c17 (patch)
treee160421a186119bb98c0551bba88adc91c761a34 /tbl_get_field.php
parent21b89133e05e94885f63bb295b0ea3430549e3e1 (diff)
Various coding style improvements
Diffstat (limited to 'tbl_get_field.php')
-rw-r--r--tbl_get_field.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tbl_get_field.php b/tbl_get_field.php
index 8d6d80aa3c..76d75f7c4f 100644
--- a/tbl_get_field.php
+++ b/tbl_get_field.php
@@ -32,7 +32,9 @@ if (!PMA_DBI_get_columns($db, $table)) {
}
/* Grab data */
-$sql = 'SELECT ' . $common_functions->backquote($transform_key) . ' FROM ' . $common_functions->backquote($table) . ' WHERE ' . $where_clause . ';';
+$sql = 'SELECT ' . $common_functions->backquote($transform_key)
+ . ' FROM ' . $common_functions->backquote($table)
+ . ' WHERE ' . $where_clause . ';';
$result = PMA_DBI_fetch_value($sql);
/* Check return code */