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-18 22:53:43 +0400
committerJo Michael <me@mynetx.net>2012-03-18 22:53:43 +0400
commitc36a9113e0122bf022f823d3db917a855762ecbb (patch)
tree777214ffa9b46d045a0c4e421877b3be28f7e1b3 /tbl_printview.php
parent9842f01444204b33f85f803b5a81265ddaaa96cd (diff)
Replaced td[align] with td[class] due to HTML5
Diffstat (limited to 'tbl_printview.php')
-rw-r--r--tbl_printview.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/tbl_printview.php b/tbl_printview.php
index 79dd3d3173..7c5b5cf37d 100644
--- a/tbl_printview.php
+++ b/tbl_printview.php
@@ -270,11 +270,11 @@ foreach ($the_tables as $key => $table) {
<table width="100%">
<tr>
<th><?php echo __('Type'); ?></th>
- <th colspan="2" align="center"><?php echo __('Usage'); ?></th>
+ <th colspan="2" class="center"><?php echo __('Usage'); ?></th>
</tr>
<tr>
<td style="padding-right: 10px"><?php echo __('Data'); ?></td>
- <td align="right"><?php echo $data_size; ?></td>
+ <td class="right"><?php echo $data_size; ?></td>
<td><?php echo $data_unit; ?></td>
</tr>
<?php
@@ -283,7 +283,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td style="padding-right: 10px"><?php echo __('Index'); ?></td>
- <td align="right"><?php echo $index_size; ?></td>
+ <td class="right"><?php echo $index_size; ?></td>
<td><?php echo $index_unit; ?></td>
</tr>
<?php
@@ -293,12 +293,12 @@ foreach ($the_tables as $key => $table) {
?>
<tr style="color: #bb0000">
<td style="padding-right: 10px"><?php echo __('Overhead'); ?></td>
- <td align="right"><?php echo $free_size; ?></td>
+ <td class="right"><?php echo $free_size; ?></td>
<td><?php echo $free_unit; ?></td>
</tr>
<tr>
<td style="padding-right: 10px"><?php echo __('Effective'); ?></td>
- <td align="right"><?php echo $effect_size; ?></td>
+ <td class="right"><?php echo $effect_size; ?></td>
<td><?php echo $effect_unit; ?></td>
</tr>
<?php
@@ -308,7 +308,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td style="padding-right: 10px"><?php echo __('Total'); ?></td>
- <td align="right"><?php echo $tot_size; ?></td>
+ <td class="right"><?php echo $tot_size; ?></td>
<td><?php echo $tot_unit; ?></td>
</tr>
<?php
@@ -326,7 +326,7 @@ foreach ($the_tables as $key => $table) {
<table width="100%">
<tr>
<th><?php echo __('Statements'); ?></th>
- <th align="center"><?php echo __('Value'); ?></th>
+ <th class="center"><?php echo __('Value'); ?></th>
</tr>
<?php
if (isset($showtable['Row_format'])) {
@@ -351,7 +351,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td><?php echo __('Rows'); ?></td>
- <td align="right">
+ <td class="right">
<?php echo PMA_formatNumber($showtable['Rows'], 0) . "\n"; ?>
</td>
</tr>
@@ -371,7 +371,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td><?php echo __('Row size'); ?>&nbsp;&oslash;</td>
- <td align="right">
+ <td class="right">
<?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
</td>
</tr>
@@ -381,7 +381,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td><?php echo __('Next autoindex'); ?></td>
- <td align="right">
+ <td class="right">
<?php echo PMA_formatNumber($showtable['Auto_increment'], 0) . "\n"; ?>
</td>
</tr>
@@ -391,7 +391,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td><?php echo __('Creation'); ?></td>
- <td align="right">
+ <td class="right">
<?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
</td>
</tr>
@@ -401,7 +401,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td><?php echo __('Last update'); ?></td>
- <td align="right">
+ <td class="right">
<?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
</td>
</tr>
@@ -411,7 +411,7 @@ foreach ($the_tables as $key => $table) {
?>
<tr>
<td><?php echo __('Last check'); ?></td>
- <td align="right">
+ <td class="right">
<?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
</td>
</tr>