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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-02-11 11:43:33 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-02-11 11:43:33 +0300
commit7226ddad6f6a510b8b71fcf635e0c8c71eb44998 (patch)
tree60374f120165d841db21565a61637cf1f613e1ca /db_tracking.php
parent9d48d2459457fe9489ba4e5fa0c0ea93e1acc504 (diff)
Right align numerical columns
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'db_tracking.php')
-rw-r--r--db_tracking.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_tracking.php b/db_tracking.php
index 3b3e203f07..01a63f91ee 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -173,7 +173,7 @@ if ($GLOBALS['dbi']->numRows($all_tables_result) > 0) {
<?php echo htmlspecialchars($version_data['table_name']);?>
</label>
</th>
- <td><?php echo $version_data['version'];?></td>
+ <td class="right"><?php echo $version_data['version'];?></td>
<td><?php echo $version_data['date_created'];?></td>
<td><?php echo $version_data['date_updated'];?></td>
<td><?php echo PMA_getVersionStatus($version_data);?></td>