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 /server_binlog.php
parent9842f01444204b33f85f803b5a81265ddaaa96cd (diff)
Replaced td[align] with td[class] due to HTML5
Diffstat (limited to 'server_binlog.php')
-rw-r--r--server_binlog.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/server_binlog.php b/server_binlog.php
index 7a2262044c..adfa9a39f1 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -120,7 +120,7 @@ PMA_showMessage(PMA_Message::success());
<table cellpadding="2" cellspacing="1">
<thead>
<tr>
- <td colspan="6" align="center">
+ <td colspan="6" class="center">
<?php
// we do not now how much rows are in the binlog
// so we can just force 'NEXT' button
@@ -195,10 +195,10 @@ while ($value = PMA_DBI_fetch_assoc($result)) {
?>
<tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; ?>">
<td>&nbsp;<?php echo $value['Log_name']; ?>&nbsp;</td>
- <td align="right">&nbsp;<?php echo $value['Pos']; ?>&nbsp;</td>
+ <td class="right">&nbsp;<?php echo $value['Pos']; ?>&nbsp;</td>
<td>&nbsp;<?php echo $value['Event_type']; ?>&nbsp;</td>
- <td align="right">&nbsp;<?php echo $value['Server_id']; ?>&nbsp;</td>
- <td align="right">&nbsp;<?php echo isset($value['Orig_log_pos']) ? $value['Orig_log_pos'] : $value['End_log_pos']; ?>&nbsp;</td>
+ <td class="right">&nbsp;<?php echo $value['Server_id']; ?>&nbsp;</td>
+ <td class="right">&nbsp;<?php echo isset($value['Orig_log_pos']) ? $value['Orig_log_pos'] : $value['End_log_pos']; ?>&nbsp;</td>
<td>&nbsp;<?php echo htmlspecialchars($value['Info']); ?>&nbsp;</td>
</tr>
<?php