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>2015-04-28 15:41:05 +0300
committerMarc Delisle <marc@infomarc.info>2015-04-28 15:41:05 +0300
commit4a5541f2a059fabb879b2c72bf482c754072eb20 (patch)
tree6b9890293c24fade1ad0293aa6abce6d8ea91ab7 /db_structure.php
parent65d0e0c26fea3d54e34c673e3eded5077e12e890 (diff)
bug: Table overhead stats: missing space before the unit
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'db_structure.php')
-rw-r--r--db_structure.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_structure.php b/db_structure.php
index 07eaa2d0fc..9773a94a38 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -181,7 +181,7 @@ foreach ($tables as $keyname => $current_table) {
if ($formatted_overhead != '') {
$overhead = '<a href="tbl_structure.php'
. $tbl_url_query . '#showusage">'
- . '<span>' . $formatted_overhead . '</span>'
+ . '<span>' . $formatted_overhead . '</span>&nbsp;'
. '<span class="unit">' . $overhead_unit . '</span>'
. '</a>' . "\n";
$overhead_check .=