From 3e0af184341eca03f24bd75a2b0c3057c8fca327 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 24 Aug 2011 13:24:21 +0200 Subject: [PATCH] Fix indentation broken by past merges --- libraries/export/sql.php | 6 +++--- tbl_printview.php | 2 +- tbl_structure.php | 26 +++++++++++++------------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/libraries/export/sql.php b/libraries/export/sql.php index d5fe67ff9f..9df3bf6869 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -765,7 +765,7 @@ if (isset($plugin_list)) { // Complete table dump, // Whether to quote table and fields names or not - // Drizzle always quotes names + // Drizzle always quotes names if (!PMA_DRIZZLE) { if ($sql_backquotes) { PMA_DBI_query('SET SQL_QUOTE_SHOW_CREATE = 1'); @@ -819,7 +819,7 @@ if (isset($plugin_list)) { $create_query = preg_replace('/^CREATE TABLE/', 'CREATE TABLE IF NOT EXISTS', $create_query); } - // Drizzle (checked on 2011.03.13) returns ROW_FORMAT surrounded with quotes, which is not accepted by parser + // Drizzle (checked on 2011.03.13) returns ROW_FORMAT surrounded with quotes, which is not accepted by parser if (PMA_DRIZZLE) { $create_query = preg_replace('/ROW_FORMAT=\'(\S+)\'/', 'ROW_FORMAT=$1', $create_query); } @@ -906,7 +906,7 @@ if (isset($plugin_list)) { // remove a possible "AUTO_INCREMENT = value" clause // that could be there starting with MySQL 5.0.24 - // in Drizzle it's useless as it contains the value given at table creation time + // in Drizzle it's useless as it contains the value given at table creation time $schema_create = preg_replace('/AUTO_INCREMENT\s*=\s*([0-9])+/', '', $schema_create); $schema_create .= $auto_increment; diff --git a/tbl_printview.php b/tbl_printview.php index 942aa81bfe..76d4e7382c 100644 --- a/tbl_printview.php +++ b/tbl_printview.php @@ -102,7 +102,7 @@ foreach ($the_tables as $key => $table) { // We need this to correctly learn if a TIMESTAMP is NOT NULL, since -// SHOW FULL FIELDS or INFORMATION_SCHEMA incorrectly says NULL + // 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). diff --git a/tbl_structure.php b/tbl_structure.php index 2bfe212ad7..6604ea2e8b 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -507,19 +507,19 @@ foreach ($fields as $row) { } } ?> - -
- +
+ - - - - + if ($spatial_enabled) { ?> + + + +
-
+
-- 2.11.4.GIT