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:
authorMichal Čihař <mcihar@suse.cz>2011-08-08 19:33:54 +0400
committerMichal Čihař <mcihar@suse.cz>2011-08-08 19:33:54 +0400
commitfae95bd225f63551445f51bb4645bd8c1ea6d065 (patch)
tree767da38962544ff7618f5b5ae3ac1e2ec0f8f6fa /tbl_printview.php
parented1519ee76a572306bfa668e0cb72ce8e2d1bf0d (diff)
Fix indentation of some code blocks
Diffstat (limited to 'tbl_printview.php')
-rw-r--r--tbl_printview.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tbl_printview.php b/tbl_printview.php
index 068cfbc743..a8eb5d623b 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -101,10 +101,10 @@ foreach ($the_tables as $key => $table) {
$columns = PMA_DBI_get_columns($db, $table);
-// We need this to correctly learn if a TIMESTAMP is NOT NULL, since
-// SHOW FULL FIELDS or INFORMATION_SCHEMA incorrectly says NULL
-// and SHOW CREATE TABLE says NOT NULL (tested
-// in MySQL 4.0.25 and 5.0.21, http://bugs.mysql.com/20910).
+ // We need this to correctly learn if a TIMESTAMP is NOT NULL, since
+ // SHOW FULL FIELDS or INFORMATION_SCHEMA incorrectly says NULL
+ // and SHOW CREATE TABLE says NOT NULL (tested
+ // in MySQL 4.0.25 and 5.0.21, http://bugs.mysql.com/20910).
$show_create_table = PMA_DBI_fetch_value(
'SHOW CREATE TABLE ' . PMA_backquote($db) . '.' . PMA_backquote($table),