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:
authorMarc Delisle <marc@infomarc.info>2013-09-16 13:56:37 +0400
committerMarc Delisle <marc@infomarc.info>2013-09-16 13:56:37 +0400
commita6924ec9161579348aa0a38b88e6a2a1b3fb994a (patch)
tree9b8944032757bb35efead071e4bea23e974b71e8 /db_tracking.php
parentf1b9eb2d62be5c04eeda6f18befef2d8d26f8e2d (diff)
Fix codestyle
Diffstat (limited to 'db_tracking.php')
-rw-r--r--db_tracking.php20
1 files changed, 12 insertions, 8 deletions
diff --git a/db_tracking.php b/db_tracking.php
index 983be487be..bcd552c13b 100644
--- a/db_tracking.php
+++ b/db_tracking.php
@@ -137,15 +137,19 @@ if ($GLOBALS['dbi']->numRows($all_tables_result) > 0) {
<td>
<a class="drop_tracking_anchor ajax" href="<?php echo $delete_link;?>" >
<?php echo $drop_image_or_text; ?></a>
- </td>
- <td>
- <a href="<?php echo $tmp_link; ?>"><?php echo __('Versions');?></a>
- |
- <a href="<?php echo $tmp_link; ?>&amp;report=true&amp;version=<?php echo $version_data['version'];?>"><?php echo __('Tracking report');?></a>
- |
- <a href="<?php echo $tmp_link; ?>&amp;snapshot=true&amp;version=<?php echo $version_data['version'];?>"><?php echo __('Structure snapshot');?></a></td>
- </tr>
<?php
+ echo '</td>'
+ . '<td>'
+ . '<a href="' . $tmp_link . '">' . __('Versions') . '</a>'
+ . '&nbsp;|&nbsp;'
+ . '<a href="' . $tmp_link . '&amp;report=true&amp;version='
+ . $version_data['version'] . '">' . __('Tracking report') . '</a>'
+ . '&nbsp;|&nbsp;'
+ . '<a href="' . $tmp_link . '&amp;snapshot=true&amp;version='
+ . $version_data['version'] . '">' . __('Structure snapshot')
+ . '</a>'
+ . '</td>'
+ . '</tr>';
if ($style == 'even') {
$style = 'odd';
} else {