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:
authorJo Michael <me@mynetx.net>2012-03-31 18:50:33 +0400
committerJo Michael <me@mynetx.net>2012-03-31 18:50:33 +0400
commit20ddd10911d6d3918ea870db3d62558759a1bbeb (patch)
tree5823b22bf0885d851e2dbe6eea046dfcf245115b /tbl_create.php
parentfc7a1339fc850291c54e7baaabce415b043e5e07 (diff)
Replaced HTML nowrap attribute with CSS for HTML5 validity
Diffstat (limited to 'tbl_create.php')
-rw-r--r--tbl_create.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_create.php b/tbl_create.php
index 40b6e5841d..55d76ba9a6 100644
--- a/tbl_create.php
+++ b/tbl_create.php
@@ -305,7 +305,7 @@ if (isset($_REQUEST['do_save_data'])) {
$new_table_string .= '<td class="value">' . $tbl_stats['Rows'] . '</td>' . "\n";
- $new_table_string .= '<td nowrap="nowrap">' . $tbl_stats['Engine'] . '</td>' . "\n";
+ $new_table_string .= '<td class="nowrap">' . $tbl_stats['Engine'] . '</td>' . "\n";
$new_table_string .= '<td> <dfn title="' . PMA_getCollationDescr($tbl_stats['Collation']) . '">'. $tbl_stats['Collation'] .'</dfn></td>' . "\n";