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_printview.php
parentfc7a1339fc850291c54e7baaabce415b043e5e07 (diff)
Replaced HTML nowrap attribute with CSS for HTML5 validity
Diffstat (limited to 'db_printview.php')
-rw-r--r--db_printview.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/db_printview.php b/db_printview.php
index 70beda080a..a76ee380e2 100644
--- a/db_printview.php
+++ b/db_printview.php
@@ -139,7 +139,7 @@ if ($num_tables == 0) {
}
?>
</td>
- <td nowrap="nowrap">
+ <td class="nowrap">
<?php echo $sts_data['ENGINE']; ?>
</td>
<?php
@@ -148,7 +148,7 @@ if ($num_tables == 0) {
$sum_size += $tblsize;
list($formated_size, $unit) = PMA_formatByteDown($tblsize, 3, 1);
?>
- <td class="right" nowrap="nowrap">
+ <td class="right nowrap">
<?php echo $formated_size . ' ' . $unit; ?>
</td>
<?php
@@ -218,7 +218,7 @@ if ($num_tables == 0) {
<th class="center">
<?php echo sprintf(_ngettext('%s table', '%s tables', $num_tables), PMA_formatNumber($num_tables, 0)); ?>
</th>
- <th class="right" nowrap="nowrap">
+ <th class="right nowrap">
<?php echo PMA_formatNumber($sum_entries, 0); ?>
</th>
<th class="center">
@@ -228,7 +228,7 @@ if ($num_tables == 0) {
if ($cfg['ShowStats']) {
list($sum_formated, $unit) = PMA_formatByteDown($sum_size, 3, 1);
?>
- <th class="right" nowrap="nowrap">
+ <th class="right nowrap">
<?php echo $sum_formated . ' ' . $unit; ?>
</th>
<?php