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 /db_structure.php
parentfc7a1339fc850291c54e7baaabce415b043e5e07 (diff)
Replaced HTML nowrap attribute with CSS for HTML5 validity
Diffstat (limited to 'db_structure.php')
-rw-r--r--db_structure.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/db_structure.php b/db_structure.php
index 10f50e0895..adef17fe0c 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -475,9 +475,9 @@ foreach ($tables as $keyname => $each_table) {
?>
<td class="value tbl_rows"><?php echo $row_count_pre . PMA_formatNumber($each_table['TABLE_ROWS'], 0) . $show_superscript; ?></td>
<?php if (!($cfg['PropertiesNumColumns'] > 1)) { ?>
- <td nowrap="nowrap"><?php echo ($table_is_view ? __('View') : $each_table['ENGINE']); ?></td>
+ <td class="nowrap"><?php echo ($table_is_view ? __('View') : $each_table['ENGINE']); ?></td>
<?php if (isset($collation)) { ?>
- <td nowrap="nowrap"><?php echo $collation ?></td>
+ <td class="nowrap"><?php echo $collation ?></td>
<?php } ?>
<?php } ?>
@@ -514,7 +514,7 @@ if ($is_show_stats) {
</tbody>
<tbody id="tbl_summary_row">
<tr><th></th>
- <th nowrap="nowrap" class="tbl_num">
+ <th class="tbl_num nowrap">
<?php
echo sprintf(
_ngettext('%s table', '%s tables', $num_tables),