diff --git a/libraries/structure.lib.php b/libraries/structure.lib.php
index 146e9778bf..a24f23e669 100644
--- a/libraries/structure.lib.php
+++ b/libraries/structure.lib.php
@@ -181,7 +181,7 @@ function PMA_getHtmlBodyForTableSummary($num_tables, $server_slave_status,
if ($server_slave_status) {
$html_output .= '
' . __('Replication') . ' | ' . "\n";
}
- $html_output .= ''
+ $html_output .= ' | '
. __('Sum')
. ' | ';
$html_output .= ''
@@ -750,7 +750,7 @@ function PMA_tableHeader($db_is_system_schema = false, $replication = false)
$cnt = 0; // Let's count the columns...
if ($db_is_system_schema) {
- $action_colspan = 3;
+ $action_colspan = 4;
} else {
$action_colspan = 7;
}
|